Tell us what’s happening:
hi everyone… i have one issue… i have been stuck into that step… i don’t know what is the further procedure to continue this project…
Your code so far
<!-- file: index.html -->
<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">
<label id="name-label" for="name">Name</label>
<input id="name" type="text" placeholder="Enter your Name" required></input> </br>
<label id="email-label" for="email">Email</label>
<input id="email" type="email" placeholder="Enter your Email" required></input> </br>
<label id="number-label" for="number" >Age</label>
<input id="number" type="number" min="1" max="99" placeholder="Age" required></input> </br>
<label for="dropdown" >Which option best describes your current role?</label>
<select id="dropdown">
<option>Select current role</option>
<option>Student</option>
<option>Full time job</option>
<option>Full time learner</option>
<option>Prefer not to say</option>
<option>Other</option>
</select> </br>
<label for="radio">Would you recommend freeCodeCamp to a friend?
</label>
<input type="radio" name="rdt" value="Definitely">Definitely</input>
<input type="radio" name="rdt" value="Maybe">May be</input>
<input type="radio" name="rdt" value="Not sure">Not sure</input></br>
<label for="dropdown1" >What is your favorite feature of freeCodeCamp?</label>
<select id="dropdown1">
<option>Select an option</option>
<option>Challenges</option>
<option>Projects</option>
<option>Community</option>
<option>Open source</option>
</select> </br>
<label for="chk">What would you like to see improved? (Check all that apply)</label>
<div id="chk">
<input type="checkbox" value="front-end">Front-end Projects</input>
<input type="checkbox" value="back-end">Back-end Projects</input>
<input type="checkbox" value="data-visual">Data Visualization</input>
<input type="checkbox" value="challenge">Challenges</input>
<input type="checkbox" value="open-source">Open Source Community</input>
<input type="checkbox" value="gitter-help">Gitter help rooms</input>
<input type="checkbox" value="videos">Videos</input>
<input type="checkbox" value="city-meet">City Meetups</input>
<input type="checkbox" value="wiki">Wiki</input>
<input type="checkbox" value="forum">Forum</input>
<input type="checkbox" value="additional-course">Additional Courses</input>
</div>
<textarea></textarea>
<button type="submit" id="submit"></submit>
</form>
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0
Challenge Information:
Survey Form - Build a Survey Form