-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
79 lines (74 loc) · 3.41 KB
/
form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!-- **start of html** -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Survey Form</title>
</head>
<body>
<h1 id="title">freeCode Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p>
<main>
<form id="survey-form">
<fieldset id="first">
<label id="name-label"><p>Name</p> <input type="text" id="name" placeholder="Enter your name" required ></label>
<label id="email-label"><p>Email</p> <input type="email" id="email" placeholder="Enter your Email" required ></label>
<label id="number-label"><p>Age</p> <input type="number" id="number" placeholder="Age" min="10" max="99" ></label>
</fieldset>
<fieldset id="second">
<label><p>Which option best describes your current role?</p> <select id="dropdown">
<option value="">Select current role</option>
<option value="1">Student</option>
<option value="2">Full time Job</option>
<option value="3">Full time learner</option>
<option value="4">Prefer not to say</option>
<option value="5">Other</option>
</select>
</label>
</fieldset>
<fieldset>
<label><p>Would you recommend freeCodeCamp to a friend?</p>
<label for="definitely"><input type="radio" name="radio" value="1" class="inline"> Definitely</label>
<label for="Maybe"><input type="radio" name="radio" value="2" class="inline"> Maybe</label>
<label for="Not sure"><input type="radio" name="radio" value="3" class="inline"> Not sure</label>
</label>
</fieldset>
<fieldset>
<label><p>What is your favorite feature of freeCodeCamp?</p> <select id="dropdown">
<option value="">Select an option</option>
<option value="1">Challenges</option>
<option value="2">Projects</option>
<option value="3">Community</option>
<option value="4">Open Source</option>
</select>
</label>
</fieldset>
<fieldset>
<label><p>What would you like to see improved?</p>
<label><input type="checkbox" value="1" class="inline"> Front-end Projects</label>
<label><input type="checkbox" value="2" class="inline"> Back-end Projects</label>
<label><input type="checkbox" value="3" class="inline"> Data Visualization</label>
<label><input type="checkbox" value="4" class="inline"> Challenges</label>
<label><input type="checkbox" value="5" class="inline"> Open Source Community</label>
<label><input type="checkbox" value="6" class="inline"> Gitter help rooms</label>
<label><input type="checkbox" value="7" class="inline"> Videos</label>
<label><input type="checkbox" value="8" class="inline"> City Meetups</label>
<label><input type="checkbox" value="9" class="inline"> Wiki</label>
<label><input type="checkbox" value="10" class="inline"> Forum</label>
<label><input type="checkbox" value="11" class="inline"> Additional Courses</label>
</label>
</fieldset>
<fieldset>
<label>
<p>Any comments or suggestions? </p>
<textarea type="text" rows="4" cols="50" placeholder="Enter your comment here..."></textarea>
</label>
</fieldset>
<button type="Submit" id="submit">Submit</button>
</form>
</main>
</body>
</html>
<!-- ** end of html ** -->