-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Realtime API-based Fetcher</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Realtime API-based Fetcher</h1>
<h2>What's happening right now?</h2>
</header>
<main>
<div class="data-column" id="bitcoin-column">
<h3>Bitcoin Prices</h3>
<div class="data-content" id="bitcoin-prices">Loading...</div>
</div>
<div class="data-column" id="api-columns">
<h3>API Data</h3>
<div class="data-content" id="api-data">Loading...</div>
</div>
</main>
<footer>
<p>Created by Joe Shenouda (cyber-consult.org) to showcase publicly available APIs.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>