<example>
</example>
my-first-webpage.html
Line 1
<!DOCTYPE html> declares this as an HTML5 document, ensuring browsers render it in standard mode.
Lines 2 & 12
The <html> tag wraps all content. It is the root of the entire document tree.
Lines 3-5
Contains metadata, title, and links to scripts/CSS. This information is not displayed directly on the page canvas.
Lines 6-11
The visible part of the document. This is where <h1> (headings) and <p> (paragraphs) live.
Code Demonstration
04 / 05