Day 17: Semantic Aside
HTML Masterclass
Current Task
Objective
Aside is used for content tangentially related to the main content (like sidebars).
Step 1: Create an <aside> tag.
Step 2: Inside, add a paragraph with "Sidebar content".
index.html
<aside>
<p>Sidebar content</p>
</aside>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview