MATERIAL FOR YOUR STEP 2 PAGE
Everything inside the gray-blue box below is what you rewrite, in your own words, onto your step2.html page.
The page is a sandwich
The two slices of bread are the <html> start and end tags — they hold everything else. The fillings are the <body>: everything a visitor actually sees on screen.
The metadata is the thinking
Between the bread, before the fillings, sits the <head> — the metadata, or information for browsers. A visitor never sees this part on screen, with one exception: the page title, which shows in the browser tab. On top of the whole sandwich sits the <!doctype html>, a flag that tells the browser this is a modern HTML page.
Tag anatomy
A tag has three parts: a start tag, the content, and an end tag. The slash is what makes an end tag: <h1>Welcome</h1>. About 99% of tags come as a start-and-end pair.
Nesting, and staying linear
A tag can sit inside another tag — but it must close inside it too. Cross your end tags and the page breaks. And HTML is linear: the browser reads your file top to bottom, and content appears on screen in the order you wrote it.