-
Notifications
You must be signed in to change notification settings - Fork 2
/
mainPage.html
59 lines (48 loc) · 2.04 KB
/
mainPage.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
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CovidTracker</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/mainPage.css">
<!-- trying to include JQuery-->
<script src="js/jquery-3.5.1.min.js"></script>
</head>
<body>
<div class="container">
<div class="content">
<img src="https://i.imgur.com/h2y11ix.png" alt="WhyMask" class="logo">
<p>A great reminder for everyone to keep their mask on</p>
</div>
<div class="data-container">
<h1>COVID-19 updated data</h1>
<!--These variables + script_test.js will be outputted in the following order:-->
<label id=cc> Current Cases: </label>
<p id="current_cases"></p>
<label id=r> Recoveries: </label>
<p id="recovered"></p>
<label id=d> Current Deaths: </label>
<p id="deaths"></p>
<label id=rr> Recovery Rate: </label>
<p id="recovery_rate"></p>
</div>
<!--Need someone to put these in a good spot-->
<!-- <a id="start" href="#">S T A R T</a>-->
<select name="category" id="category">
<option value="Null">Choose the Category</option>
<option value="country">Country</option>
<option value="continent">Continent</option>
<!-- <option value="state">State</option>
<option value="province">Province</option>
<option value="city">City</option>
-->
</select>
<!--<input id="location"type="text" placeholder="Your Location"/>-->
<select name="location" id="location"></select>
</div>
<!--used in grabbing info from github's covid-19 api-->
<script src="js/covid_script.js"></script>
</body>
</html>