Survey Form - Build a Survey Form

I feel that I am doing this WRONG & HOW
1 Inside the form element, you should have a select dropdown element with an id of dropdown and at least two options to choose from
:sob::sob:

Your code so far

/* file: index.html */
<h1 id="title" >Hello</h1>
<p id="description">fun times</p>
<form id="survey-form">
<input id="name" type="text" placeholder="name" required><label id="name-label" survey-form="descedant" >name</label> 
<input id="email" type="email" placeholder="email" required><label id="email-label" survey-form="descedant" >email</label>
<input id="number" type="number" min="1" max="10" placeholder="number"
</form><label id="number-label" survey-form="descedant">number</label>
<select id="dropdown"required> 
<option type="radio">
    <option value="1">High</option>
<optionvalue="2">Low<option><survey-form="descedant"
<group button="radio"</group>


 


/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 12; SM-G991U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Look where your closing </form> tag is. Shouldn’t all of the inputs be in the form?

Also, there is no group element in HTML. And don’t forget that the select element needs both an opening and closing tag since you can nest options in it.

You are also missing a closing > on at least one element. I think it would be a good idea to run your HTML through a validator to make sure you don’t have mistakes like this.

Thank you, Im going to try all of that. I think im confused because the directions don’t ask for a group element and I assume they think I should just know that lol I’ve googled this all day :sweat_smile: thank you for the Validator, didn’t know about that , I appreciate you

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.