Technical Documentation Page - Build a Technical Documentation Page

Tell us what’s happening:
Describe your issue in detail here.
Hi,
I’ve been trying to get this code to pass for hours, and nothing is working. The only part that keeps failing is the last step, “Your Technical Documentation project should use at least one media query.”

I’ve tried so many different media queries but none of them pass. Please help!!

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content=""
  <link rel="stylesheet" href="styles.css">
</head>
  <body>
<title>Documentation Page</title>
    <main id="main-doc">
      <div class="sections">
      <section class="main-section" id="introduction">
        <header><h1>Introduction</h1> </header>
        <p>text here.</p>
        <p>text here.</p>
        <code> </code>
        <li> text here </li>
        </section>
        <section class="main-section" id="history">
          <header><h1>History</h1> </header>
          <p>text here.</p>
          <p>text here.</p>
          <code> </code>
          <li> text here </li>
        </section>
        <section class="main-section" id="cultural_impact">
          <header><h1>Cultural Impact</h1> </header>
          <p>text here.</p>
          <p>text here.</p>
          <code> </code>
          <li> text here </li>
        </section>
        <section class="main-section" id="global_influences">
          <header><h1>Global Influences</h1></header>
          <p>text here.</p>
          <p>text here.</p>
          <code> </code>
          <li> text here </li>
        </section>
        <section class="main-section" id="modern_day">
          <header><h1>Modern Day</h1></header>
          <p>text here.</p>
          <p>text here.</p>
          <code> </code>
          <li> text here </li>
        </section>
        </div>
        <div class="left">
        <nav id="navbar">
          <header> Anime </header>
          <a class="nav-link" href="#introduction">Introduction</a>
            <a class="nav-link" href="#history">History</a>
              <a class="nav-link" href="#cultural_impact">Cultural Impact</a>
                <a class="nav-link" href="#global_influences">Global Influences</a>
                  <a class="nav-link" href="#modern_day">Modern Day</a>
          </nav>
          </div>
          </main>
          </body>
      </html> 

/* file: styles.css */
@media screen and (max-width: 992px) {
body {
  background-color: blue;
}
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

Challenge: Technical Documentation Page - Build a Technical Documentation Page

Link to the challenge:

hi Noran,

welcome to the forums!
I will try to replicate the issue you are having and we can go from there.

1 Like

The second meta line is missing the closing angle bracket. Once fixed, the test should pass.

1 Like

omg what a small mistake… it was driving me crazy. you’re a life saver, thank you!!! :blush:

2 Likes

btw. you can try using an online html code validator
They can spot small mistakes like this and can save time when the html is very large

1 Like

oh i’ve never heard of these! thank you again, i’ll check it out :blush:

1 Like

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