-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.surveyform_project.html
More file actions
237 lines (218 loc) · 9.15 KB
/
1.surveyform_project.html
File metadata and controls
237 lines (218 loc) · 9.15 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!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">
<title>Document</title>
<link rel="stylesheet" href="1.surveyform_project.css">
</head>
<body>
<!-- form container -->
<div class="container">
<h1 class="main-heading">Survey Form:</h1>
<hr>
<!-- form start -->
<form class="form-class">
<!-- Name -->
<div class="form-control">
<div class="heading-field">
<h3 class="field-head">Customer Name </h3>
</div>
<div class="field-inputs">
<div class="input-div">
<input type="text" class="form-control-input" id="first-name" name="first name" required>
<div id="first-name-help" class="help-text">Enter Your First Name</div>
</div>
<div class="input-div">
<input type="text" class="form-control-input" id="last-name" name="last name" required>
<div id="last-name-help" class="help-text">Enter last First Name</div>
</div>
</div>
</div>
<!-- Name Ends -->
<!-- Address -->
<div class="form-control">
<div class="heading-field">
<h3 class="field-head">Address</h3>
</div>
<div>
<div class="input-div">
<input type="text" class="form-control-input" id="street-address" name="address" required>
<div id="street-address-help" class="help-text">Street Address</div>
</div>
</div>
<div>
<div class="input-div">
<input type="text" class="form-control-input" id="street-address-2" name="street" required>
<div id="street-address-2-help" class="help-text">Street Address Line 2</div>
</div>
</div>
<div class="field-inputs">
<div class="input-div">
<input type="text" class="form-control-input" id="city-name" name="city" required>
<div id="city-help" class="help-text">City</div>
</div>
<div class="input-div">
<input type="text" class="form-control-input" id="state-name" name="state" required>
<div id="state-name-help" class="help-text">State</div>
</div>
</div>
<div class="field-inputs">
<div class="input-div">
<input type="number" class="form-control-input" id="zip-code" name="zip" required>
<div id="zip-code-help" class="help-text">Zip</div>
</div>
<div class="input-div">
<select class="form-control-input" name="country" required>
<option value="Afghanistan">Afghanistan</option>
<option value="Albania">Albania</option>
<option value="Algeria">Algeria</option>
<option value="Bulgaria">Bulgaria</option>
<option value="Burkina Faso">Burkina Faso</option>
<option value="Burundi">Burundi</option>
<option value="Cambodia">Cambodia</option>
<option value="Cameroon">Cameroon</option>
<option value="Cota D'Ivoire">Cote d'Ivoire</option>
<option value="Croatia">Croatia (Hrvatska)</option>
<option value="Estonia">Estonia</option>
<option value="Ethiopia">Ethiopia</option>
<option value="Falkland Islands">Falkland Islands (Malvinas)</option>
<option value="Faroe Islands">Faroe Islands</option>
<option value="Guam">Guam</option>
<option value="Guatemala">Guatemala</option>
<option value="Guinea">Guinea</option>
<option value="Guinea-Bissau">Guinea-Bissau</option>
<option value="Guyana">Guyana</option>
<option value="India">India</option>
<option value="Indonesia">Indonesia</option>
<div id="country-help" class="help-text">Select Country</div>
</div>
</div>
</div>
<!-- Address ends -->
<!-- contact -->
<div class="form-control">
<div class="heading-field">
<h3 class="field-head">Contact </h3>
</div>
<div class="field-inputs">
<div class="input-div">
<input type="tel" class="form-control-input" id="first-name" name="contact" required>
<div id="tel-name-help" class="help-text">Phone</div>
</div>
<div class="input-div">
<input type="email" class="form-control-input" id="email" name="email" required>
<div id="last-name-help" class="help-text">Email</div>
</div>
</div>
</div>
<!-- contanct ends -->
<!-- person detail -->
<div class="form-control">
<div class="heading-field">
<h3 class="field-head">Personal Details </h3>
</div>
<div class="field-inputs">
<div class="input-div">
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label><br>
</div>
</div>
</div>
<!-- personal detail ends -->
<!-- Rate -->
<div class="form-control">
<div class="heading-field">
<h3 class="field-head">Ratings </h3>
</div>
<div class="field-inputs" style="margin:0.5rem 0px ;">
<h5>Rating 1:</h5>
<div class="input-div" style="display: flex; gap:10px;">
<input type="radio" id="bad" name="rating1" value="bad">
<label for="bad">Bad</label><br>
<input type="radio" id="good" name="rating1" value="good">
<label for="good">Good</label><br>
<input type="radio" id="excelent" name="rating1" value="other">
<label for="excelent">Excelent</label><br>
</div>
</div>
<div class="field-inputs" style="margin:0.5rem 0px ;">
<h5>Rating 2:</h5>
<div class="input-div" style="display: flex; gap:10px;">
<input type="radio" id="bad2" name="rating2" value="bad">
<label for="bad2">Bad</label><br>
<input type="radio" id="good2" name="rating2" value="good">
<label for="good2">Good</label><br>
<input type="radio" id="excelent2" name="rating2" value="excelent">
<label for="excelent2">Excelent</label><br>
</div>
</div>
<div class="field-inputs" style="margin:0.5rem 0px ;">
<h5>Rating 3 :</h5>
<div class="input-div" style="display: flex; gap:10px;">
<input type="radio" id="bad3" name="rating3" value="bad">
<label for="bad3">Bad</label><br>
<input type="radio" id="good3" name="rating3" value="good">
<label for="good3">Good</label><br>
<input type="radio" id="excelent3" name="rating3" value="excelent">
<label for="excelent3">Excelent</label><br>
</div>
</div>
<div class="field-inputs" style="margin:0.5rem 0px ;">
<h5>Rating 4:</h5>
<div class="input-div" style="display: flex; gap:10px;">
<input type="radio" id="bad4" name="rating4" value="bad">
<label for="bad">Bad</label><br>
<input type="radio" id="good4" name="rating4" value="good">
<label for="good4">Good</label><br>
<input type="radio" id="excelent4" name="rating4" value="excelent">
<label for="excelent4">Excelent</label><br>
</div>
</div>
<div class="field-inputs" style="margin:0.5rem 0px ;">
<h5>Rating 5:</h5>
<div class="input-div" style="display: flex; gap:10px;">
<input type="radio" id="bad5" name="rating5" value="bad">
<label for="bad">Bad</label><br>
<input type="radio" id="good5" name="rating5" value="good">
<label for="good5">Good</label><br>
<input type="radio" id="excelent5" name="rating5" value="excelent">
<label for="excelent5">Excelent</label><br>
</div>
</div>
<div class="field-inputs" style="margin:0.5rem 0px ;">
<h5>Rating 6:</h5>
<div class="input-div" style="display: flex; gap:10px;">
<input type="radio" id="bad6" name="rating6" value="bad">
<label for="bad6">Bad</label><br>
<input type="radio" id="good6" name="rating6" value="good">
<label for="good">Good</label><br>
<input type="radio" id="excelent6" name="rating6" value="excelent">
<label for="excelent6">Excelent</label><br>
</div>
</div>
<div class="field-inputs" style="margin:0.5rem 0px ;">
<h5>Rating 7:</h5>
<div class="input-div" style="display: flex; gap:10px;">
<input type="radio" id="bad7" name="rating7" value="bad">
<label for="bad7">Bad</label><br>
<input type="radio" id="good7" name="rating7" value="good">
<label for="good7">Good</label><br>
<input type="radio" id="excelent7" name="rating7" value="excelent">
<label for="excelent7">Excelent</label><br>
</div>
</div>
</div>
<!-- Rate ends -->
<button type="submit"> Submit </button>
</form>
<!-- form ends -->
</div>
<!-- form container ends -->
</body>
</html>