forked from Anubhavpandey27/Koderz-Consultant-github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSurvey form.html
More file actions
307 lines (264 loc) · 8.76 KB
/
Survey form.html
File metadata and controls
307 lines (264 loc) · 8.76 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<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>Simple HTML HomePage</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');
body {
margin: 0;
box-sizing: border-box;
}
/* CSS for header */
.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #f5f5f5;
}
.header .logo {
font-size: 50px;
font-family: 'Sriracha', cursive;
color: #000;
text-decoration: none;
margin-left: 30px;
}
.nav-items {
display: flex;
justify-content: space-around;
align-items: center;
background-color: #f5f5f5;
margin-right: 20px;
}
.nav-items a {
text-decoration: none;
color: #000;
padding: 35px 20px;
}
/* CSS for main element */
.intro {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 520px;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url("https://images.unsplash.com/photo-1587620962725-abab7fe55159?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1031&q=80");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.intro h1 {
font-family: sans-serif;
font-size: 60px;
color: #fff;
font-weight: bold;
text-transform: uppercase;
margin: 0;
}
.intro p {
font-size: 20px;
color: #d1d1d1;
text-transform: uppercase;
margin: 20px 0;
}
.intro button {
background-color: #5edaf0;
color: #000;
padding: 10px 25px;
border: none;
border-radius: 5px;
font-size: 50px;
font-weight: bold;
cursor: pointer;
box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4)
}
.about-me {
display: flex;
justify-content: center;
align-items: center;
padding: 40px 80px;
border-top: 2px solid #eeeeee;
}
.about-me img {
width: 500px;
max-width: 100%;
height: auto;
border-radius: 10px;
}
.about-me-text h2 {
font-size: 30px;
color: #333333;
text-transform: uppercase;
margin: 0;
}
.about-me-text p {
font-size: 15px;
color: #585858;
margin: 10px 0;
}
/* CSS for footer */
.footer {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #302f49;
padding: 40px 80px;
}
.footer .copy {
color: #fff;
}
.bottom-links {
display: flex;
justify-content: space-around;
align-items: center;
padding: 40px 0;
}
.bottom-links .links {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0 40px;
}
.bottom-links .links span {
font-size: 20px;
color: #fff;
text-transform: uppercase;
margin: 10px 0;
}
.bottom-links .links a {
text-decoration: none;
color: #a1a1a1;
padding: 10px 20px;
}
</style>
</head>
<body>
<header class="header">
<img src="logo.png" alt="logo" style="width:250px;height:200px;">
<h3 href="#" class="logo">Koderz Consultant </h3>
<nav class="nav-items">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Sign Up </a>
<a href="./login-page/index.html">Log In</a>
</nav>
</header>
<main>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style.css" >
<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 >Profile</title>
<style>
body{
background-image: url(Logo3.jpg);
background-size:auto;
background-repeat: no-repeat;
background-position: center;
backface-visibility: visible;
opacity:20;
}
input[type=submit], input[type=reset] {
background-color: #1a9ab1;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<!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>Feedback for Koderz Company</title>
<style>
body{
background-image:url(ss.png);
}
</style>
</head>
<body>
<form action= >
<h1><center> Feedback for Koderz Consultant </center></h1>
<hr>
<p>Required fields are followed by *</p>
<fieldset>
<legend>User Details</legend>
<p>Name*- <input type="text" name="Name" required></p>
<p>
<fieldset>
<legend>Gender*</legend>
Male <input type="radio" name="Gender" id="Male" required>
Female <input type="radio" name="Gender" id="female" required>
Others<imput type="radio" name="Gender" id="Others" required>
</fieldset>
</p>
<p>Address- <textarea name="address" id="address" cols="70" rows="8"></textarea></textarea></p>
<p>Pincode- <input type="number" name="pincode" id="pincode"></p>
<p>Email- <input type="email" name="Email" id="email"></p>
</fieldset>
<fieldset>
<legend>Critiques</legend>
<p>
How satisfied are you with the level of expertise and knowledge demonstrated by our consultants?<textarea name="que1" id="que1" cols="50" rows="4"></textarea>
</p>
<p>
Did our consultants effectively address your needs and concerns?<textarea name="que2" id="que2" cols="50" rows="4"></textarea>
</p>
<p>
How well did our consultants communicate with you during the engagement?<textarea name="que3" id="que3" cols="50" rows="4"></textarea>
</p>
<p>
Were the consulting services provided within your budget and timeline?<textarea name="que4" id="que4" cols="50" rows="4"></textarea>
</p>
<p>
Did our consultants deliver value for the money spent on their services?<textarea name="que5" id="que5" cols="50" rows="4"></textarea>
</p>
<p>
How likely are you to recommend our consulting services to others?<textarea name="que5" id="que5" cols="50" rows="4"></textarea>
</p>
<p>
Did our consultancy services meet or exceed your expectations?
<input type="radio" name="ans" value="yes">Yes
<input type="radio" name="ans" value="No">No
</p>
<p>1. How satisfied are you with the quality of the consulting services provided?
<input type="Checkbox" name="Satisfied" value="yes">Satisfied
<input type="Checkbox" name="Neutral" value="yes">Neutral
<input type="Checkbox" name="Not Satisfied" value="yes">Not Satisfied
</p>
<p>2. How likely are you to use our consultancy services again in the future?
<input type="Checkbox" name=" Satisfied" value="yes">Satisfied
<input type="Checkbox" name="Neutral" value="yes">Neutral
<input type="Checkbox" name="Not Satisfied" value="yes">Not Satisfied
</p>
<p>3. How responsive were our consultants to your needs?
<input type="Checkbox" name="Satisfied" value="yes">Satisfied
<input type="Checkbox" name="Neutral" value="yes">Neutral
<input type="Checkbox" name="Not Satisfied" value="yes">Not Satisfied
</p>
<p>4. How well did our consultants understand your business needs?
<input type="Checkbox" name="Satisfied" value="yes">Satisfied
<input type="Checkbox" name="Neutral" value="yes">Neutral
<input type="Checkbox" name="Not Satisfied" value="yes">Not Satisfied
</p>
<input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>
</body>
</html>