-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (47 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Weather</title>
<link rel="stylesheet" href="./vendor/css/photon.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="./index.css" media="screen" charset="utf-8">
<script charset="utf-8">require('./index')</script>
</head>
<body>
<div class="header-arrow"></div>
<div class="window">
<header class="toolbar toolbar-header">
<h1 class="title">Coronavirus Statistics</h1>
</header>
<div class="window-content">
<div class="pane">
<div>
<div class="column">
<div class="reading js-total-cases"> </div>
<div class="description">Total Cases</div>
</div>
<div class="column">
<div class="reading js-total-deaths"> </div>
<div class="description">Total Deaths</div>
</div>
</div>
</div>
</div>
<footer class="toolbar toolbar-footer">
<div class="footer-link">
Developed by <a href="http://github.com/dhd5076">Dylan Dunn</a>
</div>
<div class="toolbar-actions pull-right">
<div class="btn-group">
<button class="btn btn-default js-refresh-action">
<span class="icon icon-arrows-ccw js-refresh-action" title="Refresh"></span>
</button>
<button class="btn btn-default js-quit-action">
<span class="icon icon-cancel js-quit-action" title="Quit"></span>
</button>
</div>
</div>
</footer>
</div>
</body>
</html>