-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.5 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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wizard101 Stitch Helper</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="titleHeader">
<img id="logo" src="Pictures/Wizard101_logo.png" alt="Wizard101 Logo">
<h1>Stitch Helper</h1>
</div>
<!-- Main Content -->
<select id="categoryFilter" onchange="changeCategory()">
<option value="Hat">Hats</option>
<option value="Robe">Robes</option>
<option value="Boot">Boots</option>
<option value="Wand">Wands</option>
</select>
<br>
<select id="genderFilter" onchange="filterImages()">
<option value="all">Show All</option>
<option value="male">Show Male</option>
<option value="female">Show Female</option>
</select>
<br>
<div id="pageContainer">
<button onclick="changePage('previous')">Previous</button>
<button onclick="changePage('next')">Next</button>
<br>
Page: <span id="pageValue">1</span>
<br>
# of Results: <span id="resultValue">0</span>
</div>
<br>
<div id="display">
<div id="imageContainer"></div>
<div id="outfitContainer">
<img id="magicMirror" src="Pictures/Magic_mirror.jpg" alt="Magic mirror">
<div id="outfitSelection"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>