-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject html survey form.html
More file actions
159 lines (159 loc) · 6.87 KB
/
project html survey form.html
File metadata and controls
159 lines (159 loc) · 6.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback Form</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: #f9f9f9;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
}
.rating {
display: flex;
gap: 5px;
}
.radio-group {
display: flex;
justify-content: space-between;
}
.radio-group input {
margin-right: 5px;
}
.submit-btn {
display: block;
margin-top: 20px;
padding: 10px 20px;
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.submit-btn:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<form>
<div class="form-group">
<label for="name">Name *</label>
<input type="text" id="firstName" placeholder="First" required>
<input type="text" id="lastName" placeholder="Last" required>
</div>
<div class="form-group">
<label for="email">Email *</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label>Your Experience *</label>
<div class="rating">
<input type="radio" name="experience" value="1">1
<input type="radio" name="experience" value="2">2
<input type="radio" name="experience" value="3">3
<input type="radio" name="experience" value="4">4
<input type="radio" name="experience" value="5">5
</div>
</div>
<div class="form-group">
<label>How satisfied are you with *</label>
<div>
<p>Purchase</p>
<div class="radio-group">
<label><input type="radio" name="purchase" value="1">Very Unsatisfied</label>
<label><input type="radio" name="purchase" value="2">Unsatisfied</label>
<label><input type="radio" name="purchase" value="3">Neutral</label>
<label><input type="radio" name="purchase" value="4">Satisfied</label>
<label><input type="radio" name="purchase" value="5">Very Satisfied</label>
</div>
</div>
<div>
<p>Service</p>
<div class="radio-group">
<label><input type="radio" name="service" value="1">Very Unsatisfied</label>
<label><input type="radio" name="service" value="2">Unsatisfied</label>
<label><input type="radio" name="service" value="3">Neutral</label>
<label><input type="radio" name="service" value="4">Satisfied</label>
<label><input type="radio" name="service" value="5">Very Satisfied</label>
</div>
</div>
<div>
<p>Company Overall</p>
<div class="radio-group">
<label><input type="radio" name="company" value="1">Very Unsatisfied</label>
<label><input type="radio" name="company" value="2">Unsatisfied</label>
<label><input type="radio" name="company" value="3">Neutral</label>
<label><input type="radio" name="company" value="4">Satisfied</label>
<label><input type="radio" name="company" value="5">Very Satisfied</label>
</div>
</div>
</div>
<div class="form-group">
<label>How likely are you to *</label>
<div>
<p>Buy from us again</p>
<div class="radio-group">
<label><input type="radio" name="buyAgain" value="1">Very Unlikely</label>
<label><input type="radio" name="buyAgain" value="2">Unlikely</label>
<label><input type="radio" name="buyAgain" value="3">Neutral</label>
<label><input type="radio" name="buyAgain" value="4">Likely</label>
<label><input type="radio" name="buyAgain" value="5">Very Likely</label>
</div>
</div>
<div>
<p>Recommend our product to others</p>
<div class="radio-group">
<label><input type="radio" name="recommendProduct" value="1">Very Unlikely</label>
<label><input type="radio" name="recommendProduct" value="2">Unlikely</label>
<label><input type="radio" name="recommendProduct" value="3">Neutral</label>
<label><input type="radio" name="recommendProduct" value="4">Likely</label>
<label><input type="radio" name="recommendProduct" value="5">Very Likely</label>
</div>
</div>
<div>
<p>Recommend our company to others</p>
<div class="radio-group">
<label><input type="radio" name="recommendCompany" value="1">Very Unlikely</label>
<label><input type="radio" name="recommendCompany" value="2">Unlikely</label>
<label><input type="radio" name="recommendCompany" value="3">Neutral</label>
<label><input type="radio" name="recommendCompany" value="4">Likely</label>
<label><input type="radio" name="recommendCompany" value="5">Very Likely</label>
</div>
</div>
</div>
<div class="form-group">
<label for="comments">Additional comments or suggestions</label>
<textarea id="comments" rows="4"></textarea>
</div>
<button type="submit" class="submit-btn">Submit</button>
</form>
</div>
</body>
</html>