-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvirginia.html
149 lines (114 loc) · 5.12 KB
/
virginia.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="assets/Chartjs/Chart.css">
<!-- LINK TO VA SPECIFIC CSS -->
<link rel="stylesheet" href="assets/css/styleVA.css">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<!-- moved Rachels JQuery link here -->
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<!-- link to the favicon (giving the website a biohazard icon in the title-->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<title>Covid-19: VA</title>
</head>
<body>
<!-- added a navbar, can include links to DC, VA or MD "additional info" -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">Home</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="washingtonDC.html">Washington, D.C. |</a>
<a class="nav-item nav-link" href="maryland.html">Maryland |</a>
<a class="nav-item nav-link" href="virginia.html">Virginia |</a>
<a class="nav-item nav-link" href="fun.html">Escape from Reality |</a>
</div>
</div>
</nav>
<!-- creating a button to toggle dark mode on and off -->
<div>
<button type="button" class="btn btn-dark" id="darkMode">Toggle Dark Mode</button>
</div>
<!-- BANNER PHOTO -->
<!-- changed to mostly CSS -->
<div class="imageVA"></div>
<h2>Virginia Stats</h2>
<h1 id="lastUpdate"></h1>
<div class="d-flex justify-content-center flex-wrap">
<div class="my-chart">
<canvas id="myChart" width="400" height="300"></canvas>
</div>
<div class="card ml-5">
<div class="card-body">
<div id="dataDiv" class="data-grid"></div>
<p id="cases"></p>
<p id="deaths"></p>
<p id="recovered"></p>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<!-- MORE DETAILED DATA -->
<div id="dataDiv" class="data-grid">
<p id="totalTests"></p>
<p id="positivePercent"></p>
</div>
</div>
</div>
<!-- GENERAL FAQ -->
<!-- <div id="faqDiv">
</div> -->
<!-- UNEMPLOYMENT -->
<!-- <div id="employDiv">
</div> -->
<!-- IFRAME SHOWING EXECUTIVE ORDER -->
<!-- we can keep the iframe if you guys want to, but it makes scaling the page look rough on mobile - they are not very responsive. I included a link to the executive order instead for now. -->
<!-- <div class="d-flex justify-content-center">
<div class="my-border">
<iframe src="assets\Virginia-ExecOrder53.pdf" frameborder="0" height="800px" width="600px"></iframe>
</div>
</div> -->
<div class="card order">
<div class="card-body">
<a href="https://www.governor.virginia.gov/media/governorvirginiagov/executive-actions/EO-55-Temporary-Stay-at-Home-Order-Due-to-Novel-Coronavirus-(COVID-19).pdf"
target="_blank" class="card-link">View the Executive Order from the Governor of Virginia here.</a><br>
</div>
</div>
<!-- TWITTER -->
<div class="d-flex justify-content-center pt-5">
<div class="my-border">
<a class="twitter-timeline" href="https://twitter.com/VDHgov?ref_src=twsrc%5Etfw" data-width="600"
data-height="800">Tweets by VDHgov</a></div>
</div>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8">
</script>
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<!-- link to the JS file -->
<script src="assets/js/moment.js"></script>
<script src="assets/Chartjs/Chart.js"></script>
<script type="text/javascript" src="./assets/js/scriptVA.js"></script>
<footer>
<p class="copyright"> © GWU Project NARR</p>
</footer>
</body>
</html>