-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (83 loc) · 2.77 KB
/
index.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
80
81
82
83
<!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="style.css" />
<title>Survey Form</title>
</head>
<body>
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description">
Your feedback will be used to improve the platform for future students
</p>
<form id="survey-form">
<label for="name" id="name-label">Name</label>
<input
type="text"
id="name"
name="name"
placeholder="Enter your full name" required
/><br />
<label for="email" id="email-label">Email</label>
<input
type="email"
id="email"
name="email"
placeholder="Enter your email address" required
/><br />
<label for="number" id="number-label">Age</label>
<input
type="number" size="6" min="18" max="99"
id="number"
name="number"
placeholder="Enter your age"
/><br />
<p>Would you recommend freeCodeCamp as a learning resource?</p>
<input type="radio" id="definitely" name="recommend" value="definitely" />
<label for="definitely">Definitely</label><br />
<input type="radio" id="maybe" name="recommend" value="maybe" />
<label for="maybe">Maybe</label><br />
<input type="radio" id="no" name="recommend" value="no" />
<label for="no">Not Likely</label><br />
<p>Which one of these options best describes your coding journey</p>
<select id="dropdown">
<option value="codecademy">Self-taught</option>
<option value="codecademy">Bootcamp</option>
<option value="codecademy">Formally Educated</option>
</select>
<p>
What other online learning platforms do you use
<em id="small">(Check all that apply)</em></p>
<input
type="checkbox"
id="platform1"
name="platform1"
value="Team Treehouse"
/>
<label for="platform1">Team Treehouse</label><br />
<input
type="checkbox"
id="platform2"
name="platform2"
value="Codecademy"
/>
<label for="platform2">Codecademy</label><br />
<input type="checkbox" id="platform3" name="platform3" value="Udemy" />
<label for="platform3">Udemy</label><br />
<input
type="checkbox"
id="platform4"
name="platform4"
value="Additional"
/>
<label for="platform4">Additional Courses</label><br />
</p>
<p>Any comments or suggestions</p>
<textarea name="message" rows="10" cols="30">
Enter your comments here</textarea
><br />
<input type="submit" value="Submit" id="submit" />
</form>
</body>
</html>