-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COVID19 STATS</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/Chart.min.js"></script>
<script defer src="Graph.js"></script>
<script defer src="script.js"></script>
</head>
<body>
<div class="header">
<h2> <span class="danger">COVID19</span> Data Analysis since 22nd Jan 2020 till date</h2>
<p class="created-by"> <a href="#author">- Created By Subhash Sarangi</a></p>
</div>
<div class="india-data">
<a href="./india.html">Click here</a> for india's data analysis
</div>
<div class="search_bar">
<input type="text" name="search_key" id="search_bar_input">
<button class="search_btn">Search</button>
</div>
<div class="allCountriesInfoContainer" id="allCountriesInfoContainer">
</div>
<div id="author">
<p>Created By Subhash Sarangi</p>
<p>Gmail: [email protected]</p>
<p><a href="https://github.com/Subhash3">Github</a></p>
</div>
</body>
</html>