-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextension.html
52 lines (50 loc) · 2.48 KB
/
extension.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
<!DOCTYPE html>
<html >
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Crypto Price thacker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="files/css/custom.css" />
<link rel="stylesheet" href="files/css/fira_code.css"/>
<link rel="stylesheet" href="files/css/materialize.min.css"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body id="cryptox-extension">
<!-- Navbar Container -->
<div class="header-nav">
<div id="container">
<p class="title">CryptoX </p>
<div style="float: right;">
<p class="last-update">Last Updated On: <span id="time-update"> </span></p>
</div>
</div>
</div>
<div class="summary">
<p style="margin-left: 80px;font-size:15px;">Top 10 Cryptocurrencies according to market cap</p>
</div>
<table class="highlight centered" id="result"">
<thead>
<tr>
<th>Rank</th>
<th>Name</th>
<th>Price</th>
<th>ATH (24h)</th>
<th>Change(24h)</th>
</tr>
</thead>
<tbody id="tbody">
</tbody>
</table>
<div class="api-doc">
<span style="float: left;"><a href="https://github.com/iSumitBanik/Cryptocurrency-Price-thacker-Chrome-Extension" target="_blank" rel="dofllow" style="text-decoration: none;margin-left:2px;">
Github </a>❤️</span>
<span style="float: right;">Powered by <a href="https://www.coingecko.com/api/documentations/v3" target="_blank" rel="nofollow"
style="text-decoration: none;color:blue;">
CoinGecko API</a></span>
</div>
<script src ="files/js/materialize.min.js"></script>
<script src="files/js/extension.js" async defer></script>
<script src="files/js/jquery.js"></script>
</body>
</html>