Technical Documentation Page - Build a Technical Documentation Page

Tell us what’s happening:
Hello all,

I am trying to solve this issue. my code is clean. but as you can on navbar ID section is red colored. and I got warning messages in the console logs.

warning: 2DevTools failed to load source map: Could not load content for chrome-extension://gighmmpiobklfepjocnamgkkbiglidom/browser-polyfill.js.map: Fetch through target failed: Frame not found; Fallback: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
DevTools failed to load source map: Could not load content for chrome-extension://gighmmpiobklfepjocnamgkkbiglidom/browser-polyfill.js.map: System error: net::ERR_FILE_NOT_FOUND

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <title></title>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="styles.css">
  </head>
  
  <body>
<nav id="navbar"><header>JS Documentation</header>
  <a class="nav-link" href="#Topic_1">Topic 1</a>
  <a class="nav-link" href="#Topic_2">Topic 2</a>
  <a class="nav-link" href="#Topic_3">Topic 3</a>
  <a class="nav-link" href="#Topic_4">Topic 4</a>
  <a class="nav-link" href="#Topic_5">Topic 5</a>
  <a class="nav-link" href="#Topic_6">Topic 6</a>
</nav>
    <main id="main-doc"> This is a Website, to gain my next Part of my Certification
      <section id="Luckenfuller_0" class="main-section">
        <header>Luckenfuller 0</header>
        <header>Here you can clearly see i'm Grinding</header>
        <p>Here i have to write smth</p>
        <p>to fill the gaps</p>
        <p>idk what i'm supposed to write</p>
        <p>but trying to fill the gaps</p>
        <p>funny how it feels like an essay</p>
        <p>so yeah</p>
        <p> i wont be creative anymore</p>
        <p>so yes</p>
        <p>uhm yess</p>
        <p>yeah yess yea yessiirr</p>
        <code>idk what that does</code>
        <code>so you'll neither</code>
        <code>to make this sure</code>
        <code>i'll write in German</code>
        <code>Hallo meine sehr geehrte damen und herren, hier könnte Ihre Werbung stehen.</code>
        <ol>
          <li>Eins means One</li>
          <li>Zwei means Two</li>
          <li>Drei means Three</li>
          <li>Vier means Four</li>
          <li>Fünf means.. who guessed it? Five</li>
        </ol>
      </section>
      <section id="Luckenfuller_1" class="main-section">
        <header>Luckenfuller 1</header>
      </section>
      <section id="Luckenfuller_2" class="main-section">
        <header>Luckenfuller 2</header>
      </section>
      <section id="Luckenfuller_3" class="main-section">
        <header>Luckenfuller 3</header>
      </section>
      <section id="Luckenfuller_4" class="main-section">
        <header>Luckenfuller 4</header>
      </section>
      <section id="Luckenfuller_5" class="main-section">
        <header>Luckenfuller 5</header>
      </section>
    </main>

  </body>
/* file: styles.css */
@media all and (max-width:500px) {
  body {
    background-color:grey;
    color:white;
  }
}

Your browser information:

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

Challenge: Technical Documentation Page - Build a Technical Documentation Page

Link to the challenge:

1 Like

Hi @Testa and welcome!!

You are doing great! Great job so far. Just follow the instructions. Maybe you just need a break and keep going tomorrow. :wink:

Look at this, for example, because it works:

       <nav id="navbar"><header>JS Documentation</header>
           <a class="nav-link" href="#Luckenfuller 1">Luckenfuller 1</a>
       </nav>
       (...)
      <section class="main-section">
        <header>Luckenfuller 1</header>
      </section>

You might need to put the real content first, probably it will help you.

I hope it helps. Happy coding!

Hi @Testa , welcome to the forum!

I found that the red highlighting similar to your image appears when I hit Ctrl+F in the editor. This could be some kind of bug on our side, so I opened an issue to report it.

If this is the case for you, nothing wrong with your code. If you save your code with Ctrl+S and reopen the editor, then the highlighting should be gone.

Sorry for the confusion.

1 Like

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