forked from MichaelRivera117/Covid-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (44 loc) · 1.08 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
---
layout: default
---
<body>
<!-- form does nothing right now -->
<form action="process.php" method="POST">
<label>State:</label>
<select name="state" class="states" id="stateId">
<option value="">Select State</option>
</select>
<label>City:</label>
<select name="city" class="cities" id="cityId">
<option value="">Select City</option>
</select>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//geodata.solutions/includes/countrystatecity.js"></script>
</select>
</form>
<br>
<hr>
<iframe id ="myFrame" width="900" height="700" frameborder = "0" scrolling = "no" src="city_baton_rouge.html"></iframe>
<script>
function myFunction() {
document.getElementById("myFrame").src = "https://www.hello-world.com";
}
</script>
<hr>
<h3>Current infection rate of:</h3>
<p> 3.56 </p>
<br>
<br>
<h3>Total cases: </h3>
<p> 34,542 confirmed </p>
<br>
<br>
<h3>Total deaths:</h3>
<p> 7,321 deaths </p>
<br>
<br>
<h3>Total recoveries:</h3>
<p> 1,231 recoveries </p>
<br>
<br>
</body>