Learn Accessibility by Building a Quiz - Step 68

Tell us what’s happening:
It is saying I should give the first a element a single letter access key. I have no idea how to do this
Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

        <button type="submit" accesskey="S">Student Info</button>  <li><a href="#student-info">INFO</a></li>
          <li><a href="#html-questions">HTML</a></li>
          <li><a href="#css-questions">CSS</a></li>
        </ul>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

Challenge: Learn Accessibility by Building a Quiz - Step 68

Link to the challenge:

the exercise gave an example of how to do this
<button type="submit" accesskey="s">Submit</button>

It appears you have replaced the opening ul tag with a button element and added the accesskey attribute to that. You don’t want to do that. I would restart the step to get the original HTML back.

The only thing you want to do is add the accesskey attribute to the links that are inside the list. Don’t make any other changes to the HTML.

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