Day 15: Semantic Nav & Main
HTML Masterclass
Current Task
Objective
Nav and Main are essential semantic landmarks.
Step 1: Create a <nav> containing a link to "/home" with text "Home".
Step 2: Create a <main> block containing a paragraph "Main content goes here.".
index.html
<nav>
<a href="/home">Home</a>
</nav>
<main>
<p>Main content goes here.</p>
</main>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview