forked from eraiyer/cases_deaths_hosps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (28 loc) · 826 Bytes
/
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
<!--
Created by Era Iyer
May 2020
index.html file
Program Purpose: Map visualization of US, depicting coronavirus
daily new cases per state
-->
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="select" style="text-align:center">
<!-- <div class="select"> -->
<select id="selectButton" class="selectButton" style="font-size: 14px" onchange="indexSelected()"></select>
</div>
<div id="vis"></div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div id ="graphTitle"></div>
<div id="graphInfo"></div>
<div id="graphModal"></div>
</div>
<script src="index.js"></script>
</body>