Need help with technical document page.thanks :)

hey , i’m actually doing the same project and i’m stuck it’s been 2 days… all tests are passing except for the one where i have to include text in each .nav-link element that s referring to each section… here’s my code if u could tell me what am i doing wrong that would be really nice.

hey! You could paste your code on the editor then we could have a look at it

<main id="main-doc">technical documentation
  <head> <link rel="stylesheet" href="styles.css"> </head>
  <nav id="navbar">
    <header>documentation</h>
    <a class="nav-link" href="#javascript">javascript</a>
    <a class="nav-link" href="#visualbasic">visualbasic</a>
    <a class="nav-link" href="#C++">C++</a>
    <a class="nav-link" href="#python">pyhton</a>
    <a class="nav-link" href="#SQL">SQL</a>
  </nav>
  <section id="javascript" class="main-section">
            <header>javascript</header>
    <p>
    <p>
    <code>
    <li>
  </section>
  <section id="visualbasic" class="main-section">
    <header>visualbasic</header>
    <p>
    <p>
    <code>
    <li>
  </section>
  <section id="C++" class="main-section">
    <header>C++</header>
            <p>
    <p>
    <code>
    <li>
  </section>
  <section id="python" class="main-section">
    <header>python</header>
    <p>
    <p>
    <code>
    <li>
  </section>
  <section id="SQL" class="main-section">
    <header>SQL</header>
    <p>
    <p>
    <code>
     <li>
  </section>
</main>

HI @selma !

Welcome to the forum!

I moved your post over here.
When you have questions on the forum, it is best to create your own post.

As for your issue, you have a spelling error here

Once you fix that, then you just need to pass the test for the media query

Also, it looks like you have a few errors in your html

I would suggest running your code through the html validator to find and fix those errors

oh my god how did i miss that hhhh !! thank you so much

1 Like

I did that , and it says all tests passed but when i go back to the main projects page it keeps saying that i haven’t completed the project yet …(the related checkbox isn’t checked), any idea why is that ?

hi, did you submit and go to the next challenge

After it tell’s you you’re 80% done you’ll have to click submit

Alright it worked hhh thank you so much.

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