hey guys! I keep getting this error message: " You should have the same number of .nav-link and .main-section elements." and I don’t really understand, because I do have exactly 5 main-sections and 5 nav-link, the texts and the ids are also identicals. I could use some help here!
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=width-device, initial-scale=1.0">
<title></title>
</head>
<body>
<nav id="navbar">
<header>JS Documentation</header>
<ul>
<a class="nav-link" href="#Introduction"><li>Introduction</a></li>
<a class="nav-link" href="#What_You_Should_Already_Know"><li>What You Should Already Know</a></li>
<a class="nav-link" href="#JavaScript_and_Java"><li>JavaScript and Java</a></li>
<a class="nav-link" href="#Hello_World"><li>Hello World</a></li>
<a class="nav-link" href="#Variables"><li>Variables</a></li>
</ul>
</nav>
<main id="main-doc">
<section class="main-section" id="Introduction">
<header id="Introduction">Introduction</header>
<p>something important was written here</p>
<p>something important was written here</p>
</section>
<section class="main-section" id="What_You_Should_Already_Know">
<header id="What_You_Should_Already_Know">What You Should Already Know</header>
<p>something important was written here</p>
<p>something important was written here</p>
</section>
<section class="main-section" id="JavaScript_and_Java">
<header id="JavaScript_and_Java">JavaScript and Java</header>
<p>something important was written here</p>
<p>something important was written here</p>
<code></code>
<code></code>
</section>
<section class="main-section" id="Hello_World">
<header id="Hello_World">Hello World</header>
<p>something important was written here</p>
<p>something important was written here</p>
<code></code>
<code></code>
</section>
<section class="main-section" id="Variables">
<header id="Variables">Variables</header>
<p>something important was written here</p>
<p>something important was written here</p>
<code></code>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<code></code>
</section>
</main>
</body>
</html>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
Challenge: Technical Documentation Page - Build a Technical Documentation Page
Link to the challenge: