forked from avionschool/batch6-activities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (115 loc) · 3.48 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
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Avion School Survey Form</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- title -->
<header>
<div class="text-box">
<h1 id="title">Avion School Survey Form</h1>
</div>
<main>
<!-- survey-form -->
<div class="form">
<form id="survey-form" action="https://santosral.github.io/batch6-activities/thankyou/index.html" method="get">
<!-- name -->
<div class="name">
<label>
<p>Name:</p>
</label>
<input type="text" id="name" name="name" size="20" placeholder="Enter your name" required>
<span></span>
</div>
<!-- email -->
<div class="email">
<label>
<p>Email:</p>
</label>
<input type="email" id="email" size="20" placeholder="Enter your email" required>
<span></span>
</div>
<!-- number -->
<div class="number">
<label>
<p>Age: (optional)</p>
</label>
<input type="number" id="number" name="age" size="20" min="18" max="100" placeholder="Enter your age">
</div>
<!-- dropdown -->
<div class="dropdown">
<label>
<p>Which option best describe your current role?</p>
</label>
<select id="dropdown">
<option value="">Select current role</option>
<br>
<option value="student">Student</option>
<br>
<option value="full-time-job">Full time job</option>
<br>
<option value="full-time-learner">Full time learner</option>
<br>
<option value="prefer-not">Prefer not to say</option>
<br>
<option value="other">Other</option>
</select>
</div>
<!-- radiobutton -->
<div class="radiobutton">
<p>Would you recommend Avion School to a friend?</p>
<input type="radio" id="Definitely" name="recommend" value="Definitely" checked>
<label for="Definitely">Definitely</label>
<br>
<input type="radio" id="Maybe" name="recommend" value="Maybe" checked>
<label for="Maybe">Maybe</label>
<br>
<input type="radio" id="Not-sure" name="recommend" value="Not-sure" checked>
<label for="Not-sure">Not sure</label>
</div>
<!-- checkbox -->
<div class="checkbox">
<p>What would you like to see improve?</p>
<input type="checkbox" name="improve" value="1">Front-end Projects</input>
<br>
<input type="checkbox" name="improve" value="2">Back-end Projects</input>
<br>
<input type="checkbox" name="improve" value="3">Data Visualization</input>
<br>
<input type="checkbox" name="improve" value="4">Back-end Projects</input>
<br>
<input type="checkbox" name="improve" value="5">Challenges</input>
<br>
<input type="checkbox" name="improve" value="6">Open Source Community</input>
<br>
<input type="checkbox" name="improve" value="7">Gitter Help Rooms</input>
<br>
<input type="checkbox" name="improve" value="8">Videos</input>
<br>
<input type="checkbox" name="improve" value="9">City Meetups</input>
<br>
<input type="checkbox" name="improve" value="10">Wiki</input>
<br>
<input type="checkbox" name="improve" value="11">Forum</input>
<br>
<input type="checkbox" name="improve" value="12">Additional Courses</input>
</div>
<!-- text-area -->
<div class="text-area">
<label>
<p>Any comments or suggestion?</p>
</label>
<textarea id="comment" rows="4" cols="40" placeholder="Enter your comment here..."></textarea>
</div>
<!-- submit -->
<div class="submit">
<input id="submit" type="submit" value="Submit">
</div>
</form>
</div>
</main>
</body>
</html>