-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·70 lines (67 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en-US">
<head>
<title>Search Filtering</title>
<meta charset="utf-8">
<link rel="stylesheet" href="stylesheets/catalog.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="javascripts/search.js"></script>
</head>
<body>
<div id="page">
<form id="search" action="" method="get">
<fieldset>
<input type="search" placeholder="Enter a game name">
<input type="submit" value="Search">
</fieldset>
</form>
<main>
<h1>Games</h1>
<ul>
<li data-id="1">The Legend of Zelda: Majora's Mask 3D for Nintendo 3DS</li>
<li data-id="2">Super Smash Bros. for Nintendo 3DS</li>
<li data-id="3">Super Smash Bros. for Nintendo WiiU</li>
<li data-id="4">LEGO Batman 3: Beyond Gotham for Nintendo WiiU</li>
<li data-id="5">LEGO Batman 3: Beyond Gotham for Xbox One</li>
<li data-id="6">LEGO Batman 3: Beyond Gotham for PlayStation 4</li>
<li data-id="7">Far Cry 4 for PlayStation 4</li>
<li data-id="8">Far Cry 4 for Xbox One</li>
<li data-id="9">Call of Duty: Advanced Warfare for PlayStation 4</li>
<li data-id="10">Call of Duty: Advanced Warfare for Xbox One</li>
</ul>
</main>
<aside>
<form action="" method="get">
<fieldset>
<ul>
<li>
<label>
<input type="checkbox" value="Nintendo 3DS" checked>
Nintendo 3DS
</label>
</li>
<li>
<label>
<input type="checkbox" value="Nintendo WiiU" checked>
Nintendo WiiU
</label>
</li>
<li>
<label>
<input type="checkbox" value="PlayStation 4" checked>
PlayStation 4
</label>
</li>
<li>
<label>
<input type="checkbox" value="Xbox One" checked>
Xbox One
</label>
</li>
</ul>
</fieldset>
</form>
</aside>
</div>
</body>
</html>