-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>registration form</title>
</head>
<body>
<form action="https://formsubmit.co/[email protected]" method="POST">
<select id="sample" multiple>
<option name="subjective course" value="Apples"> Apples </option>
<option name="subjective course" value="Oranges"> Oranges </option>
<option name="subjective course" value="Grapes"> Grapes </option>
<option name="subjective course" value="Bananas"> Bananas </option>
<option name="subjective course" value="Strawberries"> Strawberries </option>
</select>
<input type="text" name="name" required>
<input type="email" name="email" required>
<label for="subjects">subjects</label><input type="checkbox" name="subjects" id="subjects" value="science" />
<label for="subjects">subjects</label><input type="checkbox" name="subjects" id="subjects" value="mathematics"/>
<label for="subjects">subjects</label><input type="checkbox" name="subjects" id="subjects" value="English"/>
<button type="submit" onclick="getValues();">Send</button>
<input type="hidden" name="_captcha" value="false">
</form>
</body>
</html>