-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 2.13 KB
/
Copy pathindex.html
File metadata and controls
47 lines (39 loc) · 2.13 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
<html>
<head>
<h1 id="title">microverse trails</h1>
</head>
<body>
<p id="description">hey Thinus</p>
<form id="survey-form">
<label id="name-label">Input name</label>
<input id="name" placeholder="mas" required></input><br>
<label id="email-label">Input email</label>
<input id="email" placeholder="Thinus@thinus.com" type="email" required></input><br>
<label id="number-label">Years studies</label>
<input id="number" placeholder="5" type="number" min="0" max="10" required></input><br>
<label id="number-label">Country you live in</label>
<select id="dropdown">
<option value="USA">USA</option>
<option value="Australia">Australia</option>
<option value="Japan">Japan</option>
<option value="Canada">Canada</option>
<option value="South Africa">South Africa</option>
</select>
<label id="number-label">Favourite Sports</label><br>
<input id="Soccer" type="radio" name="Sports" value="good">soccer</input><br>
<input id="Field Hockey" type="radio" name="Sports" value="good">Field Hockey</input><br>
<input id="Volleyball" type="radio" name="Sports" value="good">Volleyball</input><br>
<input id="Basketball" type="radio" name="Sports" value="good">Basketball</input><br>
<input id="Tennis" type="radio" name="Sports" value="good <input id="Tennis" type="radio" name="Sports" value="good">Tennis</input><br>
<label id="number-label">Which sport will you most likely play</label><br>
<input id="checkbox" type="checkbox" value="1">Soccer</input><br>
<input id="checkbox" type="checkbox" value="1">Field Hockey</input><br>
<input id="checkbox" type="checkbox" value="1">Volleyball</input><br>
<input id="checkbox" type="checkbox" value="1">Basketball</input><br>
<input id="checkbox" type="checkbox" value="1">Tennis</input><br>
<label id="number-label">Besides these five sports, what other activaties do you enjoy?</label><br>
<textarea id="textarea" name="extra_sports" rows="1" cols="40"></textarea><br><br><br>
<input id="submit" type="submit"></input>
</form>
</body>
</html>