Technical Documentation Page- Checkpoint 10

Hello Friends,

I am making progress on Responsive Web Design challenge “Technical Documentation Page”, but am not able to pass checkpoint #10. This checkpoint reads:

User Story #10: Additionally, the navbar should contain link ( a ) elements with the class of nav-link . There should be one for every element with the class main-section .

I have included class=“nav-link” within all six of my nav-bar links. I have also double checked syntax and even tried moving the "nav-link> within my anchor tag. I am completely stuck right now. Can someone please help and explain why I am not able to complete this user story? Thanks!

HERE IS THE CODEPEN

 <nav id="navbar"> 
    
    <header>Geographic Information Systems</header>
    
    <a class="nav-link" href="#introduction">Introduction</a>
    <a class="nav-link" href="#history_of_development">History of Development</a>
    <a class="nav-link" href="#techniques_and_technology">Techniques and Technology</a>
    <a class="nav-link" href="#spatial_analysis_with_gis">Spatial Analysis with GIS</a>
    <a class="nav-link" href="#applications">Applications</a>
    <a class="nav-link" href="#semantics">Semantics</a>
    
    </nav>

On line 45 of your HTML:
<section class="main-sectin"
This typo is causing the test to fail. :slight_smile:

Thanks!