Day 16: Semantic Section & Article
HTML Masterclass
Current Task
Objective
Sections group content, Articles are independent pieces.
Step 1: Create a <section> tag.
Step 2: Inside, put an <article>.
Step 3: Inside the article, add an <h2> with "News Title".
index.html
<section>
<article>
<h2>News Title</h2>
</article>
</section>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview