Technical Documentation Page - Build a Technical Documentation Page

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<!-- file: index.html -->
<nav id="navbar"><header>ah</header>
     <a class="nav-link" href="a">a</a>
     <a class="nav-link" href="f">f</a>
     <a class="nav-link" href="j">j</a>
     <a class="nav-link" href="l">l</a>
     <a class="nav-link" href="o">o</a>
  </nav>
<main id="main-doc">
  <link rel="stylesheet" href="styles.css">
  <section class="main-section" id="a">
    <header>a</header>
    <p></p>
    <p></p>
    <code></code>
    <li></li>
  </section>
  <section class="main-section" id="f">
    <header>f</header>
    <p></p>
    <p></p>
    <code></code>
    <li></li>
  </section>
  <section class="main-section" id="j">
    <header>j</header>
    <p></p>
    <p></p>
    <code></code>
    <li></li>
  </section>
  <section class="main-section" id="l">
    <header>l</header>
    <p></p>
    <p></p>
    <code></code>
    <li></li>
  </section>
  <section class="main-section" id="o">
    <header>o</header>
    <p></p>
    <p></p>
    <code></code>
    <li></li>
  </section>
  




</main>
/* file: styles.css */
nav{
  text-align: center;
  background-color: indigo;

  
}
@media only screen and (max-width: 600px) {
  main {
    background-color: lightblue;
  }
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36

Challenge: Technical Documentation Page - Build a Technical Documentation Page

Link to the challenge:

href should be pointing to the id of an element to which you want to redirect the user. We represent id using a special character which is missing over here.

can you share a code ?please.

<a href="#section1">Go to Section 1</a>
<div id="section1">This is section 1 </div>
1 Like

thanks buddy its work!!

But, it would be better if you try to improve the web page that you have created. It seems like you are doing it just for passing the checks :sweat_smile:.

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