-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (102 loc) · 4.54 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet" />
<title>Formulário freeCodeCamp</title>
</head>
<body>
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description"><i>Thank you for taking the time to help us improve the platform</i>
</p>
<form id="survey-form">
<label id="name-label"> Name
<input id="name" name="name" type="text" placeholder="Enter your name" required>
</label>
<label id="email-label"> Email
<input id="email" name="email" type="email" placeholder="Enter your email" required>
</label>
<label id="number-label"> Age <span>(optional)</span>
<input id="number" name="number" type="number" min="15" max="100" placeholder="Number">
</label>
<p>Which option best describes your current role?</p>
<select id="dropdown">
<option disabled selected value="">Select Current Role</option>
<option value="student">Student</option>
<option value="full-time">Full Time Job</option>
<option value="full-learner">Full Time Learner</option>
<option value="prefer">Prefer not to say</option>
<option value="other">Other</option>
</select>
<p>Would you recommend freeCodeCamp to a friend?</p>
<label>
<input value="definitely" name="choice" type="radio"> Definitely
</label>
<label>
<input value="maybe" name="choice" type="radio"> Maybe
</label>
<label>
<input value="not-sure" name="choice" type="radio"> Not sure
</label>
<p>
What is your favorite feature of freeCodeCamp? <span>(Check all that apply)</span>
</p>
<div id="label-checkbox">
<label class="checkbox-wrapper">
<input class="checkbox-item" value="front-end" type="checkbox">
<span>Front-end Projects</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="back-end" type="checkbox">
<span>Back-end Projects</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="data-visual" type="checkbox">
<span>Data Visualization</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="challenges" type="checkbox">
<span>Challenges</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="open-source" type="checkbox">
<span>Open Source Community</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="gitter" type="checkbox">
<span>Gitter help rooms</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="videos" type="checkbox">
<span>Videos</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="city" type="checkbox">
<span>City Meetups</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="wiki" type="checkbox">
<span>Wiki</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="forum" type="checkbox">
<span>Forum</span>
</label>
<label class="checkbox-wrapper">
<input class="checkbox-item" value="courses" type="checkbox">
<span>Additional Courses</span>
</label>
<textarea>
</textarea>
<button id="submit">submit</button>
</form>
<footer>
<p>Website created by <i><a href="https://github.com/Bruno-Rawan" target="_blank">©Bruno Rawan</a></i>.</p>
</footer>
</body