-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcross-rates.html
47 lines (37 loc) · 1.2 KB
/
cross-rates.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="author" content="Håkan K Arnoldson">
<title>Currency rates - Cross-rate table</title>
<meta name="description" content="Currency cross-rates tables and converter.">
<link rel="stylesheet" href="css/cross-rates.min.css" />
</head>
<body>
<script src="dependencies/accounting-js-open-exchange-rates/accounting.min.js"></script>
<script src="js/cross-rates.js"></script>
<div id="loading">
Loading table<span class="loading-dot">.</span><span class="loading-dot">.</span><span class="loading-dot">.</span>
</div>
<div id="loading-failed"></div>
<table id="theTable">
<caption>Exchange rates</caption>
<thead id="tHead">
</thead>
<tbody id="tBody">
</tbody>
<tfoot>
<tr>
<td id="footercell">
Data from <a href="https://www.coinbase.com/" target="_blank">Coinbase</a>
</td>
</tr>
</tfoot>
</table>
<footer id="homelink">
<a href="index.html">Go back to the main page.</a>
</footer>
</body>
</html>