Day 13: Div & Span
HTML Masterclass
Current Task
Objective
Divs are block-level containers, Spans are inline.
Step 1: Create a <div>.
Step 2: Inside, add a <span> with class="highlight" and text "Hello".
Step 3: After the span, add the text " World".
index.html
<div>
<span class="highlight">Hello</span> World
</div>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview