🎯 What you'll practice: The doctype, html/head/body structure, and required meta tags.
1-A 2-C 3-B 4-B | 5 = UTF-8 6 = title 7 = <!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Page Title</title></head><body></body></html> 8 = head holds metadata not shown on the page (title, links, charset); body holds everything the user actually sees 9 = Because the viewport tag defines the layout width the browser uses before any responsive CSS breakpoints are evaluated | 10 = The missing meta viewport tag — without it, mobile browsers render the page at a fixed desktop-width virtual viewport and then zoom to fit, ignoring any responsive CSS.