Every HTML document must commence with a document type declaration: <!DOCTYPE html>
.
The HTML document itself starts with <html>
and concludes with </html>
.
The visible content of the HTML document is contained between <body>
and </body>
.
Example
<!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> |