-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (75 loc) · 3.84 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
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cryptex Compare</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<script src="js/vendor/lodash.js"></script>
<script type="text/javascript" src="js/services/fixer.js"></script>
<script src="node_modules/PubSub/src/pubsub.js"></script>
</head>
<body>
<div class="header">
<div class="row">
<h5>Cryptex Compare</h5>
</div>
</div>
<div class="container">
<div id="loader"></div>
<table class="u-full-width coin-table hide-coin-table">
<thead>
<tr>
<th>Name</th>
<th><span>Kraken</span></th>
<th><span>Coinone</span></th>
<th><span>Price difference (%)</span></th>
</tr>
</thead>
<tbody class="coin-table--body">
<tr>
<td><img src="https://files.coinmarketcap.com/static/img/coins/32x32/bitcoin.png" class="currency-logo-32x32" alt="Bitcoin"><span>Bitcoin</span></td>
<td><span class="kraken-BTC-price"></span></td>
<td><span class="coinone-BTC-price"></span></td>
<td><span class="BTC-difference"></span></td>
</tr>
<tr>
<td><img src="https://files.coinmarketcap.com/static/img/coins/32x32/bitcoin-cash.png" class="currency-logo-32x32" alt="Bitcoin Cash"><span>Bitcoin Cash</span></td>
<td><span class="kraken-BCH-price"></span></td>
<td><span class="coinone-BCH-price"></span></td>
<td><span class="BCH-difference"></span></td>
</tr>
<tr>
<td><img src="https://files.coinmarketcap.com/static/img/coins/32x32/ethereum.png" class="currency-logo-32x32" alt="Ethereum"><span>Ethereum</span></td>
<td><span class="kraken-ETH-price"></span></td>
<td><span class="coinone-ETH-price"></span></td>
<td><span class="ETH-difference"></span></td>
</tr>
<tr>
<td><img src="https://files.coinmarketcap.com/static/img/coins/32x32/ethereum-classic.png" class="currency-logo-32x32" alt="Ethereum Classic"><span>Ethereum Classic</span></td>
<td><span class="kraken-ETC-price"></span></td>
<td><span class="coinone-ETC-price"></span></td>
<td><span class="ETC-difference"></span></td>
</tr>
<tr>
<td><img src="https://files.coinmarketcap.com/static/img/coins/32x32/ripple.png" class="currency-logo-32x32" alt="Ripple"><span>Ripple</span></td>
<td><span class="kraken-XRP-price"></span></td>
<td><span class="coinone-XRP-price"></span></td>
<td><span class="XRP-difference"></span></td>
</tr>
<tr>
<td><img src="https://files.coinmarketcap.com/static/img/coins/32x32/litecoin.png" class="currency-logo-32x32" alt="Litecoin"><span>Litecoin</span></td>
<td><span class="kraken-LTC-price"></span></td>
<td><span class="coinone-LTC-price"></span></td>
<td><span class="LTC-difference"></span></td>
</tr>
</tbody>
</table>
</div>
<script type="text/javascript" src="js/app-bundle.js"></script>
</body>
</html>