HTML 3
HTML 3
</body>
</html>
The text between <head> and </head> provides information about the document.
The text between <title> and </title> provides a title for the document.
The text between<body> and </body> describes the visible page content.
HTML Tags
The first tag in a pair is the start tag and the second tag is the end tag.
HTML Documents
All HTML document must start with a type declaration: <!DOCTYPE html>
The HTML document itself begins with <html> and ends with </html>
The visible part of the html document is between <body> and </body>