Day 14: Semantic Header & Footer
HTML Masterclass
Current Task
Objective
Semantic tags describe their meaning to browsers.
Step 1: Create a <header> containing an <h1> with "My Site".
Step 2: Create a <footer> containing a <p> with "© 2026".
index.html
<header>
<h1>My Site</h1>
</header>
<footer>
<p>© 2026</p>
</footer>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview