Learn Accessibility by Building a Quiz - Step 7

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

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="description" content="freeCodeCamp Accessibility Quiz practice project" />
    <title>Accessibility Quiz</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>

<!-- User Editable Region -->

    <header>
      <img id="logo" src="https://cdn.freecodecamp.org/platform/universal/fcc_primary.svg" href="logo"/>

      <h1>HTML/CSS Quiz</h1>

      <ul>
        <il>Question</il>
        <il>Answer</il>
        <il>Score</il>
      </ul>

    </header>

<!-- User Editable Region -->

    <main></main>
  </body>
</html>

/* file: styles.css */
body {
  background: #f5f6f7;
  color: #1b1b32;
  font-family: Helvetica;
  margin: 0;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0

Challenge: Learn Accessibility by Building a Quiz - Step 7

Link to the challenge:

Hi everyone,

Please I don’t really understand the question. Can anyone help me in what I should add to the nav?

  <header>
      <img id="logo" src="https://cdn.freecodecamp.org/platform/universal/fcc_primary.svg" href="logo"/>

      <h1>HTML/CSS Quiz</h1>

      <ul>
        <il>Question</il>
        <il>Answer</il>
        <il>Score</il>
      </ul>

    </header>

Within the ‘header’ element you should have the img, h1 and nav elements. The ‘nav’ element contains the ‘ul’ element with list elements <li> (you have a typo here).

  • the img element shouldn’t have the href attribute at all.

thank you.

I’ve gotten it

1 Like