-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (65 loc) · 2.33 KB
/
index.html
File metadata and controls
76 lines (65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Covid-19 Cases | Priyanshu Dangi</title>
<link rel="icon" href="images/covid.png">
<!-- <link rel="stylesheet" href="css/styles.css"> -->
<link rel="stylesheet" href="css/indiaStyles.css">
</head>
<body>
<div class="main-content">
<header>
<h1>Covid-19</h1>
<a href="./index.html">District Wise</a>
<a><span onclick="state()">State Wise</span></a>
<a><span onclick="india()">INDIA</span></a>
</header>
<div id="districtInput">
<div id="statesDropdown">
<select name="states" id="states">
</select>
</div>
<br>
<div id="districtsDropdown">
</div>
<!-- <div id="error"></div> -->
</div>
<p id="loading">Loading...</p>
<section>
<div id="message">
<!-- <div id="datediv">
<div id="date"><b>Date: </b>
<span id="dateSpan"></span>
</div> -->
<div id="totalconfirmed">
<h3>Total Confirmed</h3>
<p id="message-1" ></p>
</div>
<div id="dailyconfirmed">
<h3>Daily Confirmed</h3>
<p id="message-4" ></p>
</div>
<div id="totalrecovered">
<h3>Total Recovered</h3>
<p id="message-3" ></p>
</div>
<div id="dailyrecovered">
<h3>Daily Recovered</h3>
<p id="message-6" ></p>
</div>
<div id="totaldeceased">
<h3>Total Deaths</h3>
<p id="message-2" ></p>
</div>
<div id="dailydeceased">
<h3>Daily Deaths</h3>
<p id="message-5" ></p>
</div>
</section>
</div>
<footer><div>Made with <span id="heart">❤</span> by <a href="https://priyanshudangi.github.io/aboutme/" target="_blank">Priyanshu Dangi</a></div></footer>
<script src="./js/district.js"></script>
</body>
</html>