-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OSRS Exchange App</title>
<link rel="stylesheet" href="css/screen.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="favicon.png">
<script src="./script/app.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.bundle.min.js"></script>
</head>
<body>
<div class="c-loader"></div>
<section class="c-app">
<div class="o-container">
<div class="c-dashboard">
<div class="c-dashboard__items c-dashboard__graph">
<h1>GRAPH</h1>
<canvas class="js-graph" width="auto" height="auto"></canvas>
</div>
<div id="current" class="c-dashboard__items c-dashboard__current">
<h1>CURRENT</h1>
<div class="c-dashboard__current-content">
<h2 class="c-dashboard__current-name js-name">-</h2>
<div class="c-dashboard__price">
<div>
<p class="js-price">-</p>
</div>
<div class="c-dashboard__current-trendtoday js-trendtoday">
<p>-</p>
</div>
</div>
</div>
<div class="c-dashboard__current-img">
<img class="js-img" src="https://secure.runescape.com/m=itemdb_oldschool/1607338866869_obj_big.gif?id=385" width="100" height="100">
</div>
</div>
<div class="c-dashboard__items c-dashboard__trend30">
<h1>1 MONTH</h1>
<div class="js-trend30">
<p>-</p>
</div>
</div>
<div class="c-dashboard__items c-dashboard__trend90">
<h1>3 MONTHS</h1>
<div class="js-trend90">
<p>-</p>
</div>
</div>
<div class="c-dashboard__items c-dashboard__trend180">
<h1>6 MONTHS</h1>
<div class="js-trend180">
<p>-</p>
</div>
</div>
</div>
<div class="c-button--center">
<button class="o-button-reset c-button js-random-button">RANDOM</button>
</div>
</div>
</section>
</body>
</html>