Input and ID for the second label?

Ok what did i do wrong i put the label in and id for the input as email . What did i do wrong?

<section role="region" aria-labelledby="student-info">
          <h2 id="student-info">Student Info</h2>
          <div class="name">
            <label for ="name">Student Name</label>
            <input id ="name">
            <input />
          </div>
          <div class="email">
           <label for ="email">Email address</label>
            <input id ="email">
            <input />
          </div>
          <div class="birth">
            <label for ="birth">Birth</label>
            <input id ="birth">
            <input />
          </div>
        </section>

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Your attributes shouldn’t have spaces before the = sign.
Also, input elements are self-closing, so shouldn’t have a separate closing tag.

It’s helpful to include a link to the challenge so that we have proper context to work with.

Also, just as an aside, <input /> is not a closing tag. It is equivalent to <input> without the /. The slash would have to be before the element name </input> for it to be a closing tag. As such, you have created twice as many input elements as what was asked for.

But again, as said, input is self-closing so it shouldn’t have a closing tag.