Day 29: Meta Viewport
HTML Masterclass
Current Task
Objective
The most important tag for mobile responsiveness.
Step 1: Create a <head> tag.
Step 2: Add a <meta> tag.
Step 3: Set name="viewport" and content="width=device-width, initial-scale=1.0".
index.html
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview