🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.

Project 5: Team Members Grid

HTML Masterclass
Step 1 of 4
Project

Skeleton & In-Page Anchor Links

Set up a <nav> with two links that jump to sections further down THIS SAME page: <a href="#leadership"> and <a href="#engineering">. Give the matching <section> elements the id attributes those links target — clicking either jumps straight there.

🎯 Your Task

Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Our Team | Nimbus Labs</title>
</head>
<body>
  <h1>Our Team</h1>
  <nav>
    <a href="#leadership">Leadership</a>
    <a href="#engineering">Engineering</a>
  </nav>
  <section id="leadership">
    <h2>Leadership</h2>
  </section>
  <section id="engineering">
    <h2>Engineering</h2>
  </section>
</body>
</html>