-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
238 lines (200 loc) · 6.97 KB
/
Copy pathindex.html
File metadata and controls
238 lines (200 loc) · 6.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>NAYEMA RFS26</title>
<style>
body{
background-color: rgb(43, 186, 226);
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
form{
background-color: white;
max-width: 600px;
max-height: 2200px;
margin: 50px auto;
padding: 30px 20px dotted;
box-shadow: 2px 5px 10px cornflowerblue;
}
.info{
text-align: left;
margin-bottom: 25px;
}
.info label{
display: block;
margin-bottom: 10px;
}
.info input, .info select, .info textarea{
border: 1px double grey;
border-radius: 2px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
padding: 10px;
width: 95%;
}
.info input[type="radio"],
.info input[type="checkbox"]{
display: inline-block;
width: auto;
}
button{
background-color: rgb(226, 125, 43);
border: 1px double gray;
border-radius: 2px;
font-family: sans-serif;
font-size: 26px;
display: block;
width: 100%;
margin-bottom: 20px;
}
</style>
</head>
<body>
<h1 >Patuakhali Science & Technology University</h1>
<h2 >PSTU CSE CLUB Survey Form</h2>
<br/>
<form action="https://formspree.io/f/xqkrlaan" method="post">
<div class="info">
<label for="name" id="name">
Name :
</label>
<input type="text" id="name" placeholder="Enter your name" required/>
</div>
<br/>
<div class="info">
<label for="id" id="id">
ID No :
</label>
<input type="text" id="id" placeholder="Enter your ID No"required/>
</div>
<br/>
<div class="info">
<label for="reg" id="reg">
Reg No :
</label>
<input type="text" id="reg" placeholder="Enter your Reg No"/>
</div>
<br/>
<div class="info">
<label for="email" id="email">
E-mail :
</label>
<input type="text" id="email" placeholder="Email Address"/>
</div>
<br/>
<div class="info">
<label>
Gender :
</label>
<label for="male">
<input type="radio" id="male" name="opinion">Male
</label>
<label for="female">
<input type="radio" id="female" name="opinion">Female
</label>
<label for="Other's">
<input type="radio" id="Other's" name="opinion">Other's
</label>
</div>
<br/>
<div class="info">
<label for="dob" id="dob">
Date of Birth :
</label>
<input type="date" id="dob" placeholder=""/>
</div>
<br/>
<div class="info">
<label for="semester" id="semester">
Your Level & Semester:
</label>
<select name="semester" id="semester" required>
<option value="L-1,S-1">L-1,S-1</option>
<option value="L-1,S-2">L-1,S-2</option>
<option value="L-2,S-1">L-2,S-1</option>
<option value="L-2,S-2">L-2,S-2</option>
<option value="L-3,S-1">L-3,S-1</option>
<option value="L-3,S-2">L-3,S-2</option>
<option value="L-4,S-1">L-4,S-1</option>
<option value="L-4,S-2">L-4,S-1</option>
</select>
</div>
<br/>
<div class="info">
<label>
Is it helpful for you?
</label>
<label for="yes">
<input type="radio" id="yes" name="opinion">Yes
</label>
<label for="no">
<input type="radio" id="no" name="opinion">No
</label>
<label for="confused">
<input type="radio" id="confused" name="opinion">Confused
</label>
</div>
<br/>
<div class="info">
<label>Languages and Frameworks may you known
<small>(Click on the language name)</small>
</label>
<br/>
<label for="c">
<input type="checkbox" name="c">C</input>
</label>
<br/>
<label for="c++">
<input type="checkbox" name="c++">C++</input>
</label>
<br/>
<label for="c#">
<input type="checkbox" name="c#">C#</input>
</label>
<br/>
<label for="java">
<input type="checkbox" name="java">Java</input>
</label>
<br/>
<label for="JS">
<input type="checkbox" name="JS">JavaScript</input>
</label>
<br/>
<label for="react">
<input type="checkbox" name="react">React</input>
</label>
<br/>
<label for="snake">
<input type="checkbox" name="snake">Snake</input>
</label>
<br/>
<label for="spring">
<input type="checkbox" name="spring">Spring</input>
</label>
<br/>
<label for="scratch">
<input type="checkbox" name="scratch">Scratch</input>
</label>
</div>
<br/>
<div class="info">
<label for="photo" id="photo">
Photo :
</label>
<input type="file" id="photo" placeholder=""/>
</div>
<div class="info">
<label for="feedback">
Any issue ocures or suggestions
</label>
<textarea name="feedback" id="feedback"
placeholder="Enter your massage here">
</textarea>
</div>
<br/>
<button type="submit" value="submit">
Submit
</button>
</form>
</body>
</html>