-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
56 lines (53 loc) · 2.33 KB
/
form.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
<!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>Registration Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="survey">
<h1>ARES SURVEY FORM</h1>
<form action="thanks.html">
<label for="name">Name</label>
<br>
<input id="name" type="text" placeholder="Enter your name" name="name" required>
<br><br>
<label for="email">Email</label>
<br>
<input id="email" type="email" placeholder="Enter your Email" name="email" required>
<br><br>
<label for="age">Age (optional)</label>
<br>
<input id="age" type="number" placeholder="Age" name="age">
<br><br>
<label for="role">Which option best describes your current role?</label>
<br>
<select name="role" id="role" required>
<option value="" disabled selected hidden>Select current role</option>
<option value="Web Developer">Web Developer</option>
<option value="Robotics">Robotics</option>
<option value="Design">Design and Content Writing</option>
<option value="PR">Sponsorships and PR</option>
</select>
<br><br>
<label for="excite">What is that one thing which excites you most about ARES?</label><br>
<select name="excite" id="excite" required>
<option value="" disabled selected hidden>Select an option</option>
<option value="Robotics">Robotics</option>
<option value="Artificial Intelligence">Artificial Intelligence</option>
<option value="Mech">Mechanical and Mechatronics</option>
<option value="Automation">Automation</option>
</select>
<br><br>
<label for="suggestions">Any comments or suggestions?</label>
<br>
<textarea name="suggestions" id="suggestions" placeholder="Enter your comment here..."></textarea>
<br><br>
<button>Submit</button>
</form>
</div>
</body>
</html>