Day 4: Images & Alt Text
HTML Masterclass
Current Task
Objective
Images make the web visual.
Step 1: Add an <img> tag. It doesn't need a closing tag.
Step 2: Set the src attribute to "logo.png".
Step 3: Crucially, add alt="Company Logo" for accessibility.
Step 4: Set the width attribute to "200".
index.html
<body>
<img src="logo.png" alt="Company Logo" width="200" />
</body>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview