Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 2: HTML Essentials: Elements and Lists!
Instruction
Nesting Block Elements
Structural elements can contain other block elements such as headings and paragraphs. For instance, you might nest a <h1>
in <header>
or a <p>
within <main>
. Hereβs how nesting might look:
<main>
<section>
<h2>Upcoming Events</h2>
<p>Join us for an exciting season filled with inspiring talks from industry leaders.</p>
</section>
<aside>
...