-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
34 lines (33 loc) · 1.2 KB
/
main.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
<html>
<head>
<link rel="stylesheet" href="mainStyle.css">
<script src="scripts/jquery-3.6.0.min.js"></script>
<script src="scripts/loadPage.js"></script>
<script src="scripts/stockPage.js" defer></script>
<script src="scripts/pageNavigation.js" defer></script>
<script src="scripts/plannerPage.js"></script>
</head>
<body>
<div id="mainBody">
<div id="header">
<p class="titleLogo">WoofThatByte</p>
<p class="titlePage" style="font-size: 16;">TWstock - TribalWars helper for premium stock</p>
</div>
<div id="layoutNavigation">
<div class="Logo">
<img src="images/WoofTheByte.png" />
</div>
<div class="navigationBar" id="navigationBar">
<ul>
<li style="display: flex;justify-content: center;"><input type="checkbox" id="disableButton" /><label class="switch" for="disableButton">Toggle</label></li>
<li><a class="active" href="#" id="stockLink">Premium stock</a></li>
<li><a href="#" id="junkLink">Junk</a></li>
</ul>
</div>
</div>
<div id="contentNavigation">
</div>
</div>
<script src="popup.js"></script>
</body>
</html>