Technical Documentation Page - Build a Technical Documentation Page

Tell us what’s happening:

Your code so far

it is telling me that the step Each .nav-link should have text that corresponds to the header text of its related section (e.g. if you have a “Hello world” section/header, your #navbar should have a .nav-link which has the text “Hello world”) is not working, i listed my code with my sections below someone help

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

      <header>Navigation</header>
      <li><a class="nav-link" href="Civil Engineering">Civil Engineering</a></li>
      <li><a class="nav-link" href="Chemical_Engineering">Chemical Engineering</a></li>
      <li><a class="nav-link" href="Software_Engineering">Software Engineering</a></li>
      <li><a class="nav-link" href="Electrical_Engineering">Electrical Engineering</a></li>
      <li><a class="nav-link" href="Industrial_Engineering">Industrial Engineering</a></li>
      </nav>
<section class="main-section" id="Civil_Engineering">
        <header><h1>Civil Engineering</h1></header>

<section class="main-section" id="Chemical_Engineering">

<section class="main-section" id="Software_Engineering">

<section class="main-section" id="Electrical_Engineering">

<section class="main-section" id="Industrial_Engineering">

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Technical Documentation Page - Build a Technical Documentation Page

this one has a space instead of an underscore, and all of them are missing the # at the beginning

Hi @Ismail8

In addition to @ILM typo spotting, each section element needs to have the text from the anchor element. Also, you need to close the section elements with a closing tag.

Happy coding

ty i took both of yalls advice and it worked they were missing hastags

2 Likes

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.