-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdoreamonmarking.html
More file actions
65 lines (53 loc) · 2.25 KB
/
doreamonmarking.html
File metadata and controls
65 lines (53 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Doraemon Activity Page</title>
</head>
<header>
<h1 id="title"> doreamonfacts </h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="doreamonregister.html">Register</a></li>
<li><a href="doreamonmedia.html">Doreamon Media</a></li>
<li><a href="doreamonmarking.html">Doreamon Form</a></li>
<li><a href="gadgets.html">Doreamon Gadget</a></li>
<li><a href="character.html">Doreamon Character</a></li>
</ul>
</nav>
</header>
<fieldset>
<legend id="title"><b>Doraemon Friendship Form</b></legend>
<form action="result.html">
<label>Name</label><br>
<input type="text" id="name" name="name"><br><br>
<label>Favourite Doraemon Character</label><br>
<select name="character" id="character">
<option value="Doraemon">Doraemon</option>
<option value="Nobita">Nobita</option>
<option value="Shizuka">Shizuka</option>
<option value="Gian">Gian</option>
<option value="Suneo">Suneo</option>
</select><br><br>
<label>Favourite Gadget</label><br>
<select name="gadget" id="gadget">
<option value="Anywhere Door">Anywhere Door</option>
<option value="Time Machine">Time Machine</option>
<option value="Take-Copter">Take-Copter</option>
<option value="Small Light">Small Light</option>
</select><br><br>
<label>Do you like Doraemon?</label><br>
<input type="radio" name="like" value="Yes">Yes<br>
<input type="radio" name="like" value="Very Much">Very Much<br><br>
<label>Favourite Episode Type</label><br>
<input type="checkbox" name="episode" value="Funny">Funny<br>
<input type="checkbox" name="episode" value="Adventure">Adventure<br>
<input type="checkbox" name="episode" value="Emotional">Emotional<br><br>
<input type="submit" value="Submit">
</form>
</fieldset>
</body>
</html>