-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 2.16 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
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
<!DOCTYPE html>
<html>
<head>
<title>Random Fortunes Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<h1>Random Fortunes Generator</h1>
<fieldset id="categories">
<legend>Categories:</legend>
<input type="checkbox" id="art" class="category" checked="true"/>
<label for="art">Art</label>
<input type="checkbox" id="computers" class="category" checked="true"/>
<label for="computers">Computers</label>
<input type="checkbox" id="cookie" class="category" checked="true"/>
<label for="cookie">Cookie</label>
<input type="checkbox" id="definitions" class="category" checked="true"/>
<label for="definitions">Definitions</label>
<input type="checkbox" id="disclaimer" class="category" checked="true"/>
<label for="disclaimer">Disclaimer</label>
<input type="checkbox" id="education" class="category" checked="true"/>
<label for="education">Education</label>
<input type="checkbox" id="food" class="category" checked="true"/>
<label for="food">Food</label>
<input type="checkbox" id="fortune" class="category" checked="true"/>
<label for="fortune">Fortune</label>
<input type="checkbox" id="law" class="category" checked="true"/>
<label for="law">Law</label>
<input type="checkbox" id="linux" class="category" checked="true"/>
<label for="linux">Linux</label>
<input type="checkbox" id="love" class="category" checked="true"/>
<label for="love">Love</label>
<input type="checkbox" id="magic" class="category" checked="true"/>
<label for="magic">Magic</label>
<input type="checkbox" id="pets" class="category" checked="true"/>
<label for="pets">Pets</label>
<input type="checkbox" id="science" class="category" checked="true"/>
<label for="science">Science</label>
</fieldset>
<textarea id="quote" cols="80" rows="20"></textarea>
<button type="button" id="next-fortune">Fortune</button>
</div>
<script src="fortunes.js"></script>
<script src="script.js"></script>
</body>
</html>