-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (115 loc) · 5.14 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
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=B612&family=Bitter&family=Mulish&family=Noto+Serif&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" />
<title>Survey Form</title>
</head>
<body>
<div class="background"></div>
<div class="container">
<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" action="https://github.com/LordZein69">
<div class="form-group">
<label id="name-label" for="name">Name</label>
<input type="text" name="name" id="name" class="form-control" placeholder="enter your name here....." required>
</div>
<div class="form-group">
<label id="email-label" for="email">Email</label>
<input type="email" name="email" id="email" class="form-control" placeholder="enter your email here....."
required>
</div>
<div class="form-group">
<label id="number-label" for="age">Age</label>
<input id="age" type="number" name="age" min="1" max="100" class="form-control" placeholder="Age here....."
required>
</div>
<div class="form-group">
<label for="dropdown">Sementara</label>
<select name="role" id="dropdown" class="form-control" required>
<option value="disabled" disabled selected>Select current role</option>
<option value="Student">Student</option>
<option value="Job">Full Time Job</option>
<option value="Learner">Full Time Learner</option>
<option value="prefer no">Prefer Not To Say</option>
<option value="other">other</option>
</select>
</div>
<div class="form-group">
<p>Would you recommend freeCodeCamp to a friend?</p>
<label for="definitely">
<input id="definitely" name="user-recomend" type="radio" class="input-radio" value="Definitely">Definitely
</label>
<label for="maybe">
<input id="maybe" name="user-recomend" type="radio" class="input-radio" value="Maybe">Maybe
</label>
<label for="not sure">
<input id="not sure" name="user-recomend" type="radio" class="input-radio" value="Not sure">Not sure
</label>
</div>
<div class="form-group">
<label for="most-like">What is your favorite feature of freeCodeCamp?</label>
<select name="most-like" id="most-like" class="form-control" required>
<option value="disabled" disabled selected>Select an option</option>
<option value="Challenges">Challenges</option>
<option value="Project">Project</option>
<option value="Community">Community</option>
<option value="Open Source">Open Source</option>
../
</select>
</div>
<div class="form-group">
<p>What would you like to see improved? (Check all that apply)</p>
<label for="front-end projects">
<input id="front-end projects" type="checkbox" name="prefer" value="Front-end Projects"
class="input-checkbox">Front-end
Projects
</label>
<label for="back-end projects">
<input id="back-end projects" type="checkbox" name="prefer" value="Back-end Projects"
class="input-checkbox">Back-end
Projects
</label>
<label for="data visualization">
<input id="data visualization" type="checkbox" name="prefer" value="Data Visualization"
class="input-checkbox">Data
Visualization
</label>
<label for="open source community">
<input id="open source community" type="checkbox" name="prefer" value="Open Source Community"
class="input-checkbox">Open
Source Community
</label>
<label for="challenges">
<input id="challenges" type="checkbox" name="prefer" value="Challenges" class="input-checkbox">Challenges
</label>
<label for="gitter help rooms">
<input id="gitter help rooms" type="checkbox" name="prefer" value="Gitter help rooms"
class="input-checkbox">Gitter help
rooms
</label>
<label for="forum">
<input id="forum" type="checkbox" name="prefer" value="Forum" class="input-checkbox">Forum
</label>
</div>
<div class="form-group">
<p>comments</p>
<textarea name="commnent" id="comments" class="input-textarea"
placeholder="enter your comment here..."></textarea>
</div>
<div class="form-group">
<button type="submit" id="submit" class="submit-button" value="submit">Submit</button>
</div>
</form>
</div>
</body>
</html>