-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 2.33 KB
/
Copy pathindex.html
File metadata and controls
91 lines (83 loc) · 2.33 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>COVID-19 Tracker India</title>
<link
href="https://fonts.googleapis.com/css2?family=Lexend+Giga&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>COVID-19 Tracker India</nav>
<!--shows the total stastistics of India -->
<header class="heading">
<div id="head" class="marquee">
<!-- <div></div>
<div></div>
<div></div>
<div></div> -->
</div>
</header>
<main class="main-class">
<!--shows the infection statistics statewise-->
<div class="column-1">
<div class="table-head">
<ul class="horizontal-list">
<li>States</li>
<li>Confirmed</li>
<li>active</li>
<li>recovered</li>
<li>deaths</li>
</ul>
</div>
<div id="table-items">
<!-- <ul class="list-items horizontal-list"> -->
<!-- <li id="state">Maharashtra</li>
<li id="confirmed">654</li>
<li id="active">65</li>
<li id="recovered">87</li>
<li id="deaths">8</li> -->
<!-- </ul> -->
</div>
</div>
<!--precaution statements-->
<div class="column-2">
<img
src="assests/images/mask.jpeg"
class="mask"
alt="a man wearing a
mask"
aria-label="a man wearing a mask"
/>
<div>
<p>Stay safe</p>
<p>Practise social distancing</p>
<p>wash hands frequently</p>
<p>listen to the authorities</p>
</div>
</div>
</main>
<footer>
~ Deepa Prasanna
<a
href="https://github.com/deepaprasanna"
target="_blank"
rel="noopener noreferrer"
aria-label="follow me on github"
>
<img src="assests/images/github.svg" alt="github logo"
/></a>
<a
href="https://www.linkedin.com/in/annedeepa/"
target="_blank"
rel="noopener noreferrer"
aria-label="follow me on linkedin"
><img src="assests/images/linkedin.svg" alt="linkedin logo"
/></a>
</footer>
<script src="main.js"></script>
</body>
</html>