-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (63 loc) · 1.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="../index.css">
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(function() {
$('#navBar').load('../navBar.html');
});
</script>
<style>
* {
margin: 0;
border: 0;
padding: 0;
}
h1 {
text-align: center;
margin-left: 20px;
}
h2 {
text-align: center;
margin: 20px;
}
#graph {
position: relative;
text-align: center;
margin: auto;
}
#form {
position: relative;
margin: auto;
top: 50%;
width: 20%;
height: 20%;
}
#input {
border: 1px solid black;
border-radius: 5px;
padding: 10px;
}
#submit {
border: 1px solid black;
border-radius: 5px;
padding: 10px;
}
</style>
</head>
<body>
<ul id="navBar"></ul>
<h1>Welcome to the Washington Counties COVID-19 Tracking Site</h1>
<h2>Please Enter a Washington County to see recent cases of COVID-19</h2>
<form id="form">
<input type="text" id="input" value="">
<input type="submit" id="submit" value="Submit">
</form>
<div id="graph">
</div>
<script src="./bundle.js"></script>
</body>
</html>