Learn Accessibility by Building a Quiz Step 21

The only thing holding me up on this step is that is the code checker doesn’t think I’m giving the second input a type of email. Here’s my code so far for the whole step.

<h2 id="student-info">Student Info</h2>
          <div class="info">
            <label for="student-name">Name:</label>
            <name="student-name">
              <type="text">
              <placeholder="student name">
            <input id="student-name"/>
          </div>
          <div class="info">
            <label for="student-email">Email:</label>
            <type="email">
            <input id="student-email" />
             <name="email">
          </div>
          <div class="info">
            <label for="birth-date">D.O.B.:</label>
            <input id="birth-date"/>
             <name="birth-date">
              <type="number">

What is the link to the challenge?

This is all malformed syntax:

You can’t put attribute-value pairs into isolated elements. Your browser doesn’t know what elements these attribute-value pairs are supposed to modify.

You’re right. I looked back on my previous work and these items were part of a label element of something like that I’ll make those changes.

Here’s the link to the challenge

You must make the attributes part of the tags
Example:

<p attribute="value" attribute="value"></p>

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