-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (83 loc) · 4.88 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
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> survey form</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 id="title">Survey Form</h1>
<main>
<p id="description">Let us know about you</p>
<form id="survey-form">
<div class="form-element">
<label for="name" id="name-label">Name</label>
<input type="text" id="name" class="form-input" placeholder="Enter Your Name" required>
</div>
<div class="form-element">
<label for="email" id="email-label">Email-id</label>
<input type="email" id="email" class="form-input" placeholder="Enter Your Email-id" required>
</div>
<div class="form-element">
<label for="age" id="number-label">Age</label>
<input type="number" id="number" class="form-input" placeholder="Your Age, Dont worry we won't share it🤫" min="10" max="100" required>
</div>
<div class="level">
<label for="level" id="level">What is your level?</label>
<select id="dropdown" class="level">
<option value="Select an option" disabled>Select an option </option>
<option value="Newbie">Newbie</option>
<option value="Amateur">Amateur</option>
<option value="Experienced">Experienced</option>
<option value="Old-Hand">Old Hand</option>
</select>
</div>
<div class="radio">
<p class="radio-description">Tell us Who you are?</p>
<div class="radio-checks">
<lable for="learner">
<input id="learner" type="radio" name="learner-trainee" value="option1">Learner
</lable><br />
<lable for="trainee"> <input id="trainee" type="radio" name="learner-trainee" value="option2">Trainee
</lable>
</div>
</div>
<div class="checkboxes">
<p class="checks-description">Which languages and skills seek your interest?</p>
<div class="form-checks">
<input id="html" type="checkbox" name="languages" value="check1">
<label for="html">HTML</label><br />
<input id="css" type="checkbox" name="languages" value="check2">
<label for="css">CSS </label><br />
<input id="js" type="checkbox" name="languages" value="check3">
<label for="js">JavaScript</label><br/>
<input id="js-query" type="checkbox" name="languages" value="check4">
<label for="js-query">JS Query</label><br />
<input id="cpp" type="checkbox" name="languages" value="check5">
<label for="cpp">C++</label><br />
<input id="pyhton" type="checkbox" name="languages" value="check6">
<label for="python">Python</label><br />
<input id="java" type="checkbox" name="languages" value="check7">
<label for="java">Java</label><br />
</div>
</div>
<div class="form-element">
<label for="comments">Any comments or suggestion?</label>
<textarea name="comments" id="comments" class="form-input" cols="30" rows="3" placeholder="Enter your commments here..."></textarea>
</div>
<div id="button">
<button type="submit">Submit</button>
</div>
</form>
</main>
</div>
<footer>
<div id="copyright">
© 2019 Survey. All rights reserved.<br>
By: Satyam
</div>
</footer>
</body>
</html>