Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
survey form

  **Your code so far**
/* file: index.html */
<!DOCTYPE html5>
<html>
<head>
  <link rel="stylesheet" href="styles.css">
  </head>
  <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">
<label id="name-label">Name</label>
<input type="text" id="name" placeholder="Eunice" required> <br>
<label id="email-label">Email</label>
<input id="email" type="email" placeholder="eunice@gmail.com"required><br>
<label id="number-label">Age(optional)</label>
<input id="number" type="number" min="18" max="100" placeholder="Age"><br>
<h4> Which option best describes your current role</h4>
<select>
<option>student</option>
<option>Full Time Job</option>
<option>Full Time Learner</option>
<option>Prefer not to say</option>
</select>
<h4>Would you recommend freecodecamp to a friend</h4><input type="radio" value="Definitely" name="Definitely">Definitely 
<input type="radio" value="Maybe"name="Maybe">Maybe 
<input type="radio" value="Not sure" name="Not sure">Not Sure
<h4> What is your favorite feature of feecodecamp</h4>
<select id="dropdown">
<option>select an option</option>
<option>Challenges</option>
<option>Projects</option>
<option>Community</option>
<option>Open source </option>
</select>
<h4>What would you like to see improved?(check all that apply) </h4> 
<input type="checkbox"value="Front-end Projects">Front-end Projects<br>
<input type="checkbox"value="Back-end Projects">Back-end Projects<br>
<input type="checkbox"value="Data Visualization">Data Visualization<br>
<input type="checkbox"value="Challenges">Challenges<br>
<input type="checkbox"value="open source">OPen Source Community<br>
<input type="checkbox"value="Gitter help rooms">Gitter help rooms<br>
<input type="checkbox"value="Videos">Videos<br>
<input type="checkbox"value="City Meetups">City Meetups<br>
<input type="checkbox"value="Wiki">Wiki<br>
<input type="checkbox"value="Forum">Forum<br>
<input type="checkbox"value="Additonal Courses">Additional Courses<br>
<h4>Any comment or suggestions?</h4>
<textarea placeholder="Enter your comment..."></textarea></br>
<input id="submit" type="Submit"name="submit">
</form>
/* file: styles.css */
<h1 id="title"></h1>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

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