Tell us what’s happening:
Your code so far
DocumentfreeCodeCamp Survey Form
Thank you for taking the time to help us improve the platform
<div class="form-group">
<label for="email" id="email-label">Email</label>
<input
type="email"
id="email"
class="form-control"
placeholder="Enter your Email"
required
/>
</div>
<div class="form-group">
<label for="number" id="number-label">Age (optional)</label>
<input
type="number"
min="10"
max="99"
name="age"
id="number"
placeholder="Age"
class="form-control"
required
/>
</div>
<div class="form-group">
<label for="dropdown"
>Which option best describes your current role?</label
>
<select name="dropdown" id="dropdown" class="form-control" required>
<option disabled>Select current role</option>
<option value="Student">Student</option>
<option value="Full Time Job">Full Time Job</option>
<option value="Full Time Learner">Full Time Learner</option>
<option value="Prefer not to say">Prefer not to say</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-group">
<p>Would you recommend freeCodeCamp to a friend?</p>
<p>
<label>
<input type="radio" name="answer" id="definitely" checked />
Definitely
</label>
</p>
<p>
<label>
<input type="radio" name="answer" id="maybe" />
Maybe
</label>
</p>
<p>
<label>
<input type="radio" name="answer" id="notsure" />
Not Sure
</label>
</p>
</div>
<div class="form-group">
<label for="favorite">
What is your favorite feature of freeCodeCamp?
</label>
<select name="favorite" id="favorite" class="form-control" required>
<option disabled>Select an option</option>
<option value="Student">Challenges</option>
<option value="Full Time Job">Projects</option>
<option value="Full Time Learner">Community</option>
<option value="Prefer not to say">Open Source</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-group">
<p>What would you like to see improved? (Check all that apply)</p>
<p>
<label>
<input
type="checkbox"
name="checkbox"
value="Front-end Projects"
/>Front-end Projects
</label>
</p>
<p>
<label>
<input
type="checkbox"
name="checkbox"
value="Back-end Projects"
/>Back-end Projects
</label>
</p>
<p>
<label>
<input
type="checkbox"
name="checkbox"
value="Data Visualization"
/>Data Visualization
</label>
</p>
<p>
<label>
<input
type="checkbox"
name="checkbox"
value="Challenges"
/>Challenges
</label>
</p>
<p>
<label>
<input
type="checkbox"
name="checkbox"
value="Open Source Community"
/>Open Source Community
</label>
</p>
<p>
<label>
<input
type="checkbox"
name="checkbox"
value="Gitter help rooms"
/>Gitter help rooms
</label>
</p>
<p>
<label>
<input type="checkbox" name="checkbox" value="Videos" />Videos
</label>
</p>
<p>
<label>
<input type="checkbox" name="checkbox" value="City Meetups" />City
Meetups
</label>
</p>
<p>
<label>
<input type="checkbox" name="checkbox" value="Wiki" />Wiki
</label>
</p>
<p>
<label>
<input type="checkbox" name="checkbox" value="Forum" />Forum
</label>
</p>
<p>
<label>
<input
type="checkbox"
name="checkbox"
value="Additional Courses"
/>Additional Courses
</label>
</p>
</div>
<div class="form-group">
<p>Any comments or suggestions?</p>
<textarea
name="comment"
id="comment"
cols="50"
rows="6"
placeholder="Enter your comment here..."
required
></textarea>
</div>
<div class="form-group">
<button type="submit" id="submit">Submit</button>
</div>
</form>
</div>
WARNING
The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.
You will need to take an additional step here so the code you wrote presents in an easy to read format.
Please copy/paste all the editor code showing in the challenge from where you just linked.
Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36
Challenge: Build a Survey Form
Link to the challenge: