-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html~
58 lines (58 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="../index.css">
<style>
#responseField {
font-size: 30px;
color: white;
margin: auto;
float: left;
margin-top: 30px;
width: 300px;
height: 300px;
background-color: black;
overflow: auto;
}
#graph {
margin-left: 30px;
margin-top: 30px;
float: left;
width: 300px;
max-width: 300px;
max-height: 300px;
height: 300px;
background-color: black;
}
</style>
</head>
<body>
<ul>
<li><a href="../index.html">Home</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Dropdown</a>
<div class="dropdown-content">
<a href="../WeatherServer/fancy.html">Weather Server</a>
<a href="index.html">Covid Server</a>
</div>
</li>
<li class="dropdown">
<a href="javascropt:void(0)" class="dropbtn">Reflections</a>
<div class="dropdown-content">
<a href="reflections.html">Honors 100</a>
</div>
</li>
</ul>
<h1>Welcome to the COVID-19 Tracking App</h1>
<form>
<input type="text" id="input" value="">
<input type="submit" id="submit" value="Submit">
</form>
<div id="responseField">
</div>
<div id="graph">
</div>
<script src="./index.js"></script>
</body>
</html>