Tell us what’s happening:
not able to do this?? Any idea!!
You should have at least one textarea element that is a descendant of #survey-form.
Your code so far
<!-- file: index.html -->
<h1 id="title">Survey form</h1>
<p id="description">This is the test Survey Form</p>
<form id="survey-form">
<label id="name-label">
Name
</label>
<input id="name" type="text" required placeholder="enter your name"></input>
<label id="email-label">
Email
</label>
<input id="email" type="email" required placeholder="enter your email"></input>
<label id="number-label">
Age
</label>
<input id="number" type="number" min="18" max="40" placeholder="age"></input>
<select id="dropdown">
<option>Student</option>
<option>Faculty</option>
</select>
<input type="radio" value="0" name="Yes">
<input type="radio" value="0" name="No"></input>
<input type="radio" value="0" name="No"></input>
</input>
<input type="radio" value="1" name="No">
<input type="radio" value="0" name="No"></input>
</input>
<input type="radio" value="0" name="No"></input>
</input>
<input type="checkbox" value="0" name="No"></input>
<input type="checkbox" value="1" name="No"
></input>
<input type="textarea"></input>
<button id="submit" type="submit">Submit</button>
</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/125.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form