-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (75 loc) · 2.75 KB
/
index.html
File metadata and controls
77 lines (75 loc) · 2.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fork Me! FCC: Test Suite Template</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body style="background-image: url('images/bg.jpg');">
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<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">
<div>
<label id = "name-label" for = "name">Name</label>
<input id="name" required type="text" placeholder=" Enter your name">
</div>
<div>
<label id = "email-label" for = "email"> Email </label>
<input id="email" required type = "email" placeholder="Enter your email">
</div>
<div>
<label id= "number-label" for = "number"> Age </label>
<input id="number" type="number" placeholder="Enter your age" min = "0" max = "100">
</div>
<div>
<p> Which option best describes your current role? </p>
<select id = "dropdown" name = "role">
<option value = "" selected = "">Select current role</option>
<option value="student">Student</option>
<option value="job">Full time job</option>
</select>
</div>
<div>
<p>Would you recommend freeCodeCamp to a friend?</p>
<fieldset id="radio-input">
<label>
<input class="radio" type="radio" value="Definatly" name = "radio-input"> Dafinatly
</label>
<label>
<input class="radio" type="radio" value="Maybe" name="radio-input"> Maybe
</label>
<label>
<input class= "radio" type = "radio" value="Not sure" name="radio-input"> Not sure
</label>
</fieldset>
</div>
<div>
<p>
What would you like to see improved?
<span class="clue" > (Check all that apply)</span>
</p>
<label>
<input class= "checkbox" value = "front-end-projects" type="checkbox"> Front end projects
</label>
<label>
<input class= "checkbox" value = "back-end-projects" type="checkbox"> Back end projects
</label>
<label>
<input class= "checkbox" value = "data-visualization" type="checkbox"> Data visualization
</label>
<label>
<input class= "checkbox" value = "challenges" type="checkbox"> Challenges
</label>
</div>
<div>
<p>Any comments or suggestions?</p>
<textarea placeholder="Enter your comments here"></textarea>
</div>
<div>
<button id="submit">Submit</button>
</div>
</form>
<script src="js/index.js"></script>
</body>
</html>