Failed my first attempt because of typos. Just want to make sure I fixed them
Here is the response I received:
The questions you missed were:
-
has a ‘button’ element which contains the exact text “Create new pet”
-
has exactly one input with a name of ‘pet_name’ and an associated label with the content ‘Name’
-
has exactly one ‘select’ element with a name of ‘pet_type’ and an associated label with the content ‘Type’
Here is my fixed HTML doc:
<label for="name">Name</label>
<input type="text" id="name" name="pet_name">
<label for="type">Type</label>
<select name="pet_type" id="type">
<option value="cat">Cat</option>
<option value="dog">Dog</option>
<option value="hamster">Hamster</option>
<option value="zebra">Zebra</option>
<option value="other">Other</option>
</select>
<label for="pet_bio">Biography</label>
<textarea name="pet_bio" id="bio">
</textarea>
<label for="pet_owner_email">Owner's Email</label>
<input type="email" name="pet_owner_email" id="owner_email">
<button type="submit" id="new_pet_submit_button">Create new pet</button>
<button type="reset">Reset</button>
<img src="images/desert.jpg" alt="Desert" id="desert">
<img src="images/person-avatar.jpg" alt="The desert Shaman" id="desertMan">
<h3 id="title">Matawa Dream</h3>
<h4 id="desert-shaman" class="twoBody">Desert Shaman</h4>
<p class="twoBody" id="blurb">Skilled in the art of taking folks out
into the desert and helping them see who they really are</p>