Structure Of HTML Page
Course Content Structure of a webpage Display a web page in the browser Add a title to an HTML document 1. Structure of a webpage An HTML document (or web page) always begins with the start tag <!DOCTYPE html> and always ends with the end tag of the </html> element as follows: Example1
1 2 3 4 5 6 7 8 |
<!DOCTYPE html> <head> <title>Document title</title> </head> <body> ...The HTML Page Content... </body> </html> |
<!DOCTYPE…