-
Notifications
You must be signed in to change notification settings - Fork 1
/
usTrends.html
109 lines (90 loc) · 3.53 KB
/
usTrends.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>COVID U.S</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/spacelab/bootstrap.min.css" integrity="sha384-F1AY0h4TrtJ8OCUQYOzhcFzUTxSOxuaaJ4BeagvyQL8N9mE4hrXjdDsNx249NpEc" crossorigin="anonymous">
<!--Google Fonts Link -->
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Kufam:wght@400;669&display=swap" rel="stylesheet">
<!--CSS Link -->
<link rel="stylesheet" href="static/css/homepage.css">
</head>
<body>
<header class="page-header" role="banner">
<h1 class="project-name">The impact of COVID-19 in the United States</h1>
<h2 class="project-tagline">
A review of COVID-19 statistics and projecting future trends</h2>
<a href="index.html" class="btn">Home</a>
<a href="usTrends.html" class="btn">Trends</a>
<a href="tab.html" class="btn">US COVID Data</a>
<a href="model.html" class="btn">Model</a>
<a href="projection.html" class="btn">Projection</a>
<a href="https://github.com/LisaHarrison08/COVID-Predictions" class="btn" target="_blank">Github</a>
<a href="https://covid-trends-us.herokuapp.com/index.html" class="btn" target="_blank">COVID Trends</a>
</header>
<!-- Creates the Overall Grid -->
<!-- <div class="container"> -->
<!--First Row Charts -->
<div class="row">
<div class="col-lg-1"></div>
<!--First Column in this Row-->
<div class="col-lg-4 pt-4">
<div class="box py-2 mt-3 px-0">
<h6>Select a State from the map or dropdown menu to analyse the data:</h6>
<div id="map"></div>
<!-- <h5>Select a State:</h5> -->
<div id="stateData" class="panel-body">
<select id="selDataset"></select>
</div>
</div>
</div>
<!--Second Column in this Row-->
<div class="col-lg-6">
<div class="box py-2 mt-3 px-0">
<h3></h3>
<div id="myDiv"></div>
<h3></h3>
</div>
</div>
</div>
<!--Second Row Charts -->
<div class="row">
<!--First Column in this Row-->
<div class="col-lg-6">
<div class="box py-2 mt-3 pb-5 px-0">
<div id="plot-revenue"></div>
</div>
</div>
<!--Second Column in this Row-->
<div class="col-lg-6">
<div class="box py-2 mt-3 pb-5 px-0">
<div id="plot-covid"></div>
</div>
</div>
</div>
</div>
</body>
<footer class="site-footer">
<span class="site-footer-owner"><a href="#top">Back to Top</a></span>
<br>
<span class="site-footer-owner">
<i>View and download our project projections
<a href="https://github.com/LisaHarrison08/COVID-Predictions" target="_blank">on GitHub</a>
<!-- <a href="/contact" target="_blank">Contact Us</a> -->
</i>
</span>
</footer>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.5.0/d3.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<!-- ***** New code, load D3 for the map -->
<script src="https://d3js.org/d3.v4.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src="https://d3js.org/d3-geo-projection.v2.min.js"></script>
<!-- ***** -->
<script src="./static/js/app.js"></script>
</body>
</html>