Hi everyone. I am stuck at this step because all my “appropriate” for attribute text for the last label (D.O.B. that is Date of Birth) have been rejected. I have used date-of-birth, date_of_birth, date of birth, dateOfBirth, date-Of-Birth, dob, DOB, but it is not working.
Here’s the code:
<section role="region" aria-labelledby="student-info">
<h2 id="student-info">Student Info</h2>
<div class="info">
<label for="name">Name:</label>
<input id="name"/>
</div>
<div class="info">
<label for="email">Email:</label>
<input id="email"/>
</div>
<div class="info">
<label for"date-of-birth">D.O.B.:</label>
<input id="date-of-birth"/>
</div>
</section>
The hint insists that I should give the third label
element an appropriate for
attribute.
Any help will be appreciated. Thanks