I can’t find the issue with it.
it says my #name , #email should require input also and my #dropdown should have at least two selectable (not disabled) option elements.
Your code so far
<!-- file: index.html -->
<!DOCTYPE HTML><link rel="stylesheet" href="styles.css">
<body>
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</P>
<form id="survey-form">Name
<input id="name" type="text" placeholder="First name">
Email <input id="email" type="email" placeholder="email address">
Age(Optional) <input id="number" type="number" min="9" max="120" placeholder="Age"></input>
<label id="name-label">First name</label>
<label id="email-label" email>email</label>
<label id="number-label">number</label>
Which option best describes your current role?<select id="dropdown">
<options>
<options>
<input type="radio" value="Definitely" name="Would you recommend freeCodeCamp to a friend?">Definitely </input>
<input type="radio" value="Not Sure" name="Would you recommend freeCodeCamp to a friend?">Maybe</input>
<input type="radio" value="Not Sure" name="Would you recommend freeCodeCamp to a friend?">Not Sure</input>
Which option best describes your current role?
<input type="checkbox" value="Checked">Student</input>
<input type="checkbox" value="Checked">Full time Job</input>
<input type="checkbox" value="Checked">full time Learner</input>
<input type="checkbox" value="Checked">Prefer not to say</input>
<input type="checkbox" value="Checked">Other</input>
Explain in bio <textarea placeholder="I..."></textarea>
<button id="submit" type="submit" >Submit</button>
</form>
</body>
/* 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/119.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form

