-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.52 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="stylesheet.css">
<title>Gambit.Report</title>
<meta name="description" content="Gambit.Report">
<meta name="keywords" content="Destiny 2 gambit tracker">
</head>
<body>
<div class="header">
<h1>Gambit.Report</h1>
<img id="emblem"></img>
<h1 id="player"></h1>
</div>
<div class="search" id="search">
<input type="text" id="search-bar" placeholder="Guardian#1234">
<button id="searchButton" onclick="run();">Search</button>
</div>
<ul class="flex-container" id="container">
<li class="flex-item" id="stats" style="display:none">
<h1>Reputation</h1>
<p id="rankStats"></p>
<h1 id="metricsH1"></h1>
<p id="metrics"></p>
<h1 id="avgH1"></h1>
<p id="avg"></p>
</li>
<li class="flex-item" id="table" style="display:none">
<table id="gambitTable">
<tr>
<th><h2>Standing</h2></th>
<th><h2>Kills</h2></th>
<th><h2>Deaths</h2></th>
<th><h2>Duration</h2></th>
</tr>
</table>
</li>
</ul>
<div class="footer">
<p>Created by Enricamoose</p>
<button id="quickLoad" onclick="searchMe();" style="display: none; margin-left:auto; margin-right:auto;">Enricamoose</button>
</div>
<script src="main.js"></script>
</body>
</html>