-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 2.12 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
49
50
51
<!DOCTYPE HTML>
<html>
<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>COVID-19</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/mystyle.css">
</head>
<body>
<header>
<h1>
<center> Realtime COVID-19 Data Fetcher and Notifier </center>
</h1>
</header>
<div id="hero-image">
<h2>Precautions:</h2>
To prevent the spread of COVID-19:
<ul>
<li>Clean your hands often. Use soap and water, or an alcohol-based hand rub.</li>
<li>Maintain a safe distance from anyone who is coughing or sneezing.</li>
<li>Don’t touch your eyes, nose, or mouth.</li>
<li>Cover your nose and mouth with your bent elbow or a tissue when you cough or sneeze.</li>
<li>Stay home if you feel unwell.</li>
<li>If you have a fever, a cough, and difficulty breathing, seek medical attention. Call in advance.</li>
<li>Follow the directions of your local health authority.</li>
</ul>
<a></a>
</div>
<div class="features">
<h2>Realtime COVID-19 Map</h2>
<button type="button" onClick="window.open('map.html','_blank'); return false;" target="_blank" name="button">Look at the map</button>
<h2>COVID-19 Realtime Notifier</h2>
<button type="button" onClick="location.href='notifier.py'" name="button"><i class="fa fa-download"></i>
Download</button>
<h2>COVID-19 Data Fetcher</h2>
<button type="button" onClick="location.href='datafetcher.py'" name="button"><i class="fa fa-download"></i>
Download</button>
</div>
<footer>
<strong>© 2020 COVID-19</strong>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
</html>