Tell us what’s happening:
Describe your issue in detail here.
Team, I have an issue with is part of the code. I delete the attribute text and its value from the number label, but I still have an error. Please help.
Your code so far
<!-- file: index.html -->
<h1 id="title">Build a Survey Form</h1>
<p id="description" Description="form">
Please fill out this form
</p>
<form id="survey-form"><input id="name" type="text" required placeholder="text" ><label id="name-label" </label><input id="email" type="email" required placeholder="text"><label id="email-label"</label> <input id="number" type="number" min="1" max="100" placeholder="1-100"><label id="number-label"></label>
<select id="dropdown" name="dropdown">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
</select>
<input type="radio"id="Netflix"name="brand"
value="Netflix">
<label for="Netflix">Netflix</label>
<input type="radio"id="Audi"name="brand"
value="Audi">
<label for="Audi">Audi</label>
<input type="radio"id="Microsoft"name="brand"
value="Microsoft">
<label for="Microsoft">Microsoft</label>
<input type="checkbox" id="vehicle1" name="vehicle1" value="Bike">
<label for="vehicle1"> I have a bike</label>
<input type="checkbox" id="vehicle2" name="vehicle2" value="Car">
<label for="vehicle2"> I have a car</label>
<input type="checkbox" id="vehicle3" name="vehicle3" value="Boat">
<label for="vehicle3"> I have a boat</label>
<textarea name="comment" form="usrform">Enter text here...</textarea>
<input id="submit" type="submit">
<label for="submit"></label>
</form>
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203
Challenge: Survey Form - Build a Survey Form
Link to the challenge: