0% found this document useful (0 votes)
16 views2 pages

Surveyform

This document contains an HTML survey form with questions about a user's name, email, age, current role, recommendation of freeCodeCamp, desired improvements, and additional comments. The form contains various input fields like text, email, number, radio buttons, checkboxes, dropdown menus, and a textarea for comments.

Uploaded by

sonu.punia.2205
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views2 pages

Surveyform

This document contains an HTML survey form with questions about a user's name, email, age, current role, recommendation of freeCodeCamp, desired improvements, and additional comments. The form contains various input fields like text, email, number, radio buttons, checkboxes, dropdown menus, and a textarea for comments.

Uploaded by

sonu.punia.2205
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang='en'>
<head><title>freeCodeCamp Survey Form</title></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 for='name' id='name-label'>
Name<br><input id='name' type='text' placeholder='enter name'
required><br>
</label><br>
<label for='email' id='email-label'>
Email<br><input id='email' type='email'
placeholder='enter email' required><br>
</label><br>
<label for='number' id='number-label'>
Age(optional)<br>
<input id='number' type='number'
placeholder='enter age' min=10 max=99><br>
</label><br>
Which option best describes
your current role?<br>
<select name="dropdown"
id="dropdown">
<option
value="student">student</option>
<option
value="full time">full time</option>
<option
value="part time">part time</option>
<option
value="prefer not to say">prefer not to say</option>

</select><br><br>
Would
you recommend freeCodeCamp to a friend?<br>

<input type='radio' value='sure' name='1'> Definately

<input type='radio' value='maybe' name='2'>Not sure<br>

<input type='radio' value='sure' name='1'> maybe

<input type='radio' value='maybe' name='2'>maybe not<br>

<br><br>

What would you like to see improved? (Check all that apply)<br>

<input type='checkbox' id='1' value='1'>Front-end Projects

<br><input type='checkbox' id='2' value='2'>Back-end Projects


<br><input type='checkbox' id='3' value='3'>Data Visualization

<br><input type='checkbox' id='4' value='4'>Challenges

<br><input type='checkbox' id='5' value='5'>Open Source Community

<br>

Any comments or suggestions?<br>

<textarea id="1" name="text" rows="4" cols="50">

</textarea>

<br><br><center>

<input id='submit' type='submit' name='submit'></center>

You might also like