-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcovid19.html
More file actions
42 lines (36 loc) · 1.37 KB
/
covid19.html
File metadata and controls
42 lines (36 loc) · 1.37 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Oswald:400,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<title>Covid-19 Tracker | anubhab</title>
<link rel = "icon" href ="logo.png">
</head>
<body>
<div class="wrapper">
<div class="content">
<!-- <canvas id="canvas"></canvas> -->
<div class="mainImage">
<img class="covidFull" src="covid.png" alt="">
<img class="covidHalf" src="coronaHalf.png" alt="Covid Mobile">
</div>
<div class="left">
<p id="casses">cases: <span class="cassesLabel"></span> </p>
<!-- <p id="viewCountry">view by country</p> -->
<p id="deaths">deaths: <span class="deathsLabel"></span> </p>
<p id="recovered">recovered: <span class="recoveredLabel"></span> </p>
</div>
<div class="right">
<p>STAY</p>
<div class="logo">
<a href="https://www.covid19india.org/"><img src="icmr.png" alt=""></a>
</div>
<p>SAFE</p>
</div>
</div>
</div>
<script src="bundle.js"></script>
</body>
</html>