-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterest.html
69 lines (69 loc) · 2.86 KB
/
interest.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
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<head>
<title>GOTCHA!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Anton|Montserrat:400,600|Quicksand:400,500,700" rel="stylesheet">
</head>
<body>
<header>
<div class="header">
<h1 id="mainhead"><a href="index.html">GOTCHA!</a></h1>
<h3 id="underhead">Find your new friend here!</h3>
</div>
</header>
<div class="options">
<h1>Share You Interests</h1>
<h2>Choose what you're interest in or what you like</h2>
<form class="likes" action="congrats.html" target="_blank">
<span>Animals:</span><br>
<label for="cat">
<input type="checkbox" name="cat" id="cat">Cat<br>
<label for="dog">
<input type="checkbox" name="dog" id="dog">Dog<br>
<label for="bird">
<input type="checkbox" name="bird" id="bird">Bird<br>
<label for="rabbit">
<input type="checkbox" name="rabbit" id="rabbit">Rabbit<br>
<label for="fish">
<input type="checkbox" name="fish" id="fish">Fish<br><br>
<span>Drinks:</span><br>
<label for="milk">
<input type="checkbox" name="milk" id="milk">Milk<br>
<label for="tea">
<input type="checkbox" name="tea" id="tea">Tea<br>
<label for="coffee">
<input type="checkbox" name="coffee" id="coffee">Coffee<br>
<label for="juice">
<input type="checkbox" name="juice" id="juice">Juice<br>
<label for="soda">
<input type="checkbox" name="soda" id="soda">Soft Drinks<br><br>
<span>Food:</span><br>
<label for="rice">
<input type="checkbox" name="rice" id="rice">Fried Rice<br>
<label for="noodles">
<input type="checkbox" name="noodles" id="noodles">Noodles<br>
<label for="burger">
<input type="checkbox" name="burger" id="burger">Burger<br>
<label for="pizza">
<input type="checkbox" name="pizza" id="pizza">Pizza<br>
<label for="chick">
<input type="checkbox" name="chick" id="chick">Fried Chicken<br><br>
<span>Hobby:</span><br>
<label for="games">
<input type="checkbox" name="games" id="games">Playing Games<br>
<label for="music">
<input type="checkbox" name="music" id="music">Listening to Music<br>
<label for="books">
<input type="checkbox" name="books" id="books">Reading Books<br>
<label for="paint">
<input type="checkbox" name="paint" id="paint">Paint Picture<br>
<label for="sport">
<input type="checkbox" name="sport" id="sport">Playing Sports<br><br>
<input type="submit" id="next" value="Sign Up">
</div>
<footer>
Copyright © 2018 Natascha Lamsu
</footer>
</body>
</html>