12. Each element with the class of “nav-link” should contain text that corresponds to the text within each (e.g. if you have a “Hello world” section/header, your navbar should have an element which contains the text “Hello world”).
Check that these headers have corresponding .nav-link elements and be mindful of case! : THOUGHTS …
<nav id="navbar">
<header>Anime</header>
<ul>
<a class="nav-link" href="#Anime"> <li> Anime</li></a>
<! a class="nav-link" href="#Anime_Genres"> <li> Anime Genres </li></a>
<a class="nav-link" href="#Thoughts"><li> What you think? </li></a>
<!a class="nav-link" href="#Manga"> <li> Manga </li></a>
<!a class="nav-link" href="#Manhwa"> <li> Manhwa </li></a>
<!a class="nav-link" href="#About_Me"><li> About Me </li></a>
<!-- The "<!" thing is Intentional, as I'm a New user & I can't put more than two links! -->
</ul>
</nav>
<main id="main-doc">
<section class="main-section" id="Anime">
<header>Anime</header>
<p>
<code> "What is Anime?" </code>
</p>
<p>
<ul>
<li> -----------------Lorem -------------------- </li>
<li> Popular Anime Series</li>
<ul>
<li> Cowboy Bebop</li>
<li> Berserk</li>
<li> Steins;Gate</li>
</ul>
</ul>
</p>
<br>
<section class="main-section" id="Anime_Genres">
<header>Anime Genres</header>
<p>
<code> "This is an easy guide that will help you understand better how anime categories." </code>
</p>
<p>
<ul>
<li> ...............</li>
<ul>
<li> OOOO </li>
<li> --------- </li>
<li> ---------</li>
</ul>
</p>
<br>
<section class="main-section" id="Thoughts">
<header>Thoughts</header>
<p>
<code> "Let us know what your thoughts are" </code>
</p>