-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (55 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COVID Stats Tracker</title>
<link rel="stylesheet" href="https://bootswatch.com/4/darkly/bootstrap.min.css">
</head>
<style>
input[type="text"], input[type="text"]:focus {
color: #fff;
}
h5{
color: rgb(236, 198, 29);
}
h1{
text-shadow: -1px -1px 6px rgba(236, 198, 29, 0.6);
}
</style>
<body>
<header>
<nav class="navbar bg-dark">
<div class="container">
<a href="#" class="navbar-brand text-warning">COVID Stats Tracker</a>
</div>
</nav>
</header>
<main class="my-3">
<div class="container">
<div class="card card-body">
<form>
<div class="form-group">
<input type="text" id="inputText" class="form-control rounded bg-dark" placeholder="Country name" autocomplete="off">
</div>
</form>
<h1 class="heading text-center">Country</h1>
<div class="shadow p-3">
<h5>Today's Stats</h5>
<ul class="list-group" id="todaysStats">
</ul>
</div>
<div class="shadow p-3">
<h5>Total Stats</h5>
<ul class="list-group" id="totalStats">
</ul>
</div>
<small id="lastUpdated" class="text-center mt-3"></small>
</div>
</div>
</main>
<script src="covid.js"></script>
<script src="ui.js"></script>
<script src="main.js"></script>
</body>
</html>