-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 2.3 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Auction House Alchemy</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<!-- Realm Selector Here -->
<div class="nav_container">
<label for="realmSelect" class="realmLabel"></label>
<select name="realms" id="realmSelect" class="selectionBox">
<!-- <option value="">Select A Realm</option>
<option value="API Info">Area 52</option> --->
</select>
<ul class="link_container">
<li class="nav_links" onclick="openPage(event, 'potionPage')"><button class="link">Potions</button></li>
<li class="nav_links" onclick="openPage(event, 'herbPage')"><button class="link">Herbs</button></li>
</ul>
</div>
</header>
<!-- POTION --- Start of Potion DIV -->
<div id="potionPage" class="pageContent" style="display: flex;">
<div class="listWrap">
<div class="leftList">
<ul id="potionList_1">
<!-- <li> Potion Image + Potion Name
<li> Gold Information About Potion -->
</ul>
</div>
<div class="rightList">
<ul id="potionList_2">
<!-- <li> Potion Image + Potion Name
<li> Gold Information About Potion -->
</ul>
</div>
</div>
</div>
<!-- HERB --- Start of Herb DIV -->
<div id="herbPage" class="pageContent" style="display: none;">
<div class="listWrap">
<div class="leftList">
<ul id="herbList_1">
<!-- <li> Potion Image + Potion Name
<li> Gold Information About Potion -->
</ul>
</div>
<div class="rightList">
<ul id="herbList_2">
<!-- <li> Potion Image + Potion Name
<li> Gold Information About Potion -->
</ul>
</div>
</div>
</div>
<script src="ah.js"></script>
<script src="oauth.js"></script>
</body>
</html>