I’m not sure what I am doing wrong on my text input name label for HTML.
Here is the guideline:
… has an single-line text input with and id of “name”, a name of "pet_name"
, and with an associated label that reads “Name”.
Here is my code:
<label for="Name">Name</label>
<input type="text" id="name" name="pet_name">
</div>
My code for “email” and “bio” labels are identica (with identical guidelines), and it has no issues with those, but for some reason, it keeps kicking this back as a failure, so I must be missing something.
Thank you for your help!!