-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COVID19 TRACKER</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h3 style="text-decoration: underline; ">COVID 19 REAL TIME UPDATE</h3>
</header>
<section>
<div class="card country">
<p class="head">OUR COUNTRY</p>
<p class="data" id="country"></p>
</div>
<div class="card active">
<p class="head">TOTAL ACTIVE</p>
<p class="data" id="active"></p>
</div>
<div class="card recovered">
<p class="head">TOTAL RECOVERED</p>
<p class="data" id="recovered"></p>
</div>
<div class="card death">
<p class="head">TOTAL DEATH</p>
<p class="data" id="death"></p>
</div>
<div class="card total">
<p class="head">TOTAL CASES</p>
<p class="data" id="total"></p>
</div>
<div class="card last-update">
<p class="head">LAST UPDATE</p>
<p class="data" id="last-update"></p>
</div>
</section>
<footer>
<h3 style="background-color: transparent;">designed by Saurabh</h3>
</footer>
<script src="main.js"></script>
</body>
</html>