-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (40 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="./favicon.png" />
<meta name="theme-color" content="#000000" />
<title>Is El Salvador Up?</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="src/css/index.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js"></script>
<script type="text/javascript" src="src/js/index.js"></script>
<script type="text/javascript">
window.addEventListener('DOMContentLoaded', async () => {
await init();
});
</script>
</head>
<body>
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
<h5 class="my-0 mr-md-auto font-weight-normal">Is El Salvador up?</h5>
<nav class="my-2 my-md-0 mr-md-3">
<div id="price-display" class="price-display">
aghhhh i'm loooooooading
</div>
</nav>
</div>
<div class="container">
<div id="root">
<div id="error" class="alert alert-danger d-none">
</div>
<div id="position-evaluation" class="position-evaluation">
aghhhh i'm evalyooooooating
</div>
<div id="transaction-table">
aghhh i'm taaaaaabling
</div>
</div>
</div>
</body>
</html>