Complete the code to create a link that jumps to the section with ID 'contact'.
<a href="[1]">Go to Contact</a> <section id="contact"> <h2>Contact Us</h2> </section>
The href attribute uses #contact to link to the section with the ID 'contact' on the same page.
Complete the code to add an ID to the section so the link can jump to it.
<section [1]>
<h2>About Us</h2>
<p>Welcome to our website.</p>
</section>The id attribute uniquely identifies the section so links can jump to it.
Fix the error in the link so it correctly jumps to the 'services' section.
<a href="services">Our Services</a> <section id="services"> <h2>Services</h2> </section>
The link must use #services to jump to the section with ID 'services' on the same page.
Fill both blanks to create a link and a section with matching IDs for navigation.
<a href="[1]">Jump to FAQ</a> <section [2]> <h2>FAQ</h2> </section>
The link's href uses #faq to jump to the section with id="faq".
Fill all three blanks to create a navigation link that jumps to a section with a unique ID.
<nav> <a href="[1]">Go to Blog</a> </nav> <main> <article [2]> <h2>Blog Posts</h2> <p>Latest news and updates.</p> </article> </main> <footer [3]> <p>Footer content here.</p> </footer>
The link uses #blog to jump to the article with id="blog". The footer has id="footer" for unique identification.