Learn Accessibility by Building a Quiz - Step 12

Tell us what’s happening:

Describe your issue in detail here.
Please kindly help point out the issue here. These are the instructions:
To enable navigation on the page, add an unordered list with the following three list items:

  • INFO
  • HTML
  • CSS

The list items text should be wrapped in anchor tags.

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>
    <header>
      <img id="logo" src="https://cdn.freecodecamp.org/platform/universal/fcc_primary.svg">
      <h1>HTML/CSS Quiz</h1>

<!-- User Editable Region -->

      <nav>
        <ul>
          <a><li>INFO</li></a>
          <a><li>HTML</li></a>
          <a><li>CSS</li></a>
       </ul>
      </nav>

<!-- User Editable Region -->

    </header>
    <main></main>
  </body>
</html>
1 Like

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Awesome job! Try adding ’ href=“#” ’ inside the opening ‘a’ tags. Good luck!

2 Likes

Thank you Mr. Albert.

3 Likes

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