🎯 What you'll practice: Heading hierarchy, unordered/ordered lists, and hyperlinks.
1-B 2-B 3-C 4-B | 5 = a 6 = ul 7 = <ol><li>Reading</li><li>Coding</li><li>Cycling</li></ol> (any 3 valid hobbies) 8 = Heading levels form the page's semantic outline used by screen readers and search engines — skipping levels for a smaller font breaks that outline; use CSS to change size instead 9 = <a href="about.html">About Us</a> | 10 = Screen readers let users jump between headings to navigate; if levels are skipped or used only for visual size, the outline becomes inaccurate and confusing — the fix is to use correct heading order and style font size with CSS instead of choosing a heading level for its default size.