-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcovid19.html
46 lines (39 loc) · 1.97 KB
/
covid19.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Coding Under COVID </title>
<link href="styles.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<nav id = "nav">
<div class = "logo">
<a href = "./index.html" class = "sitetitle"> Coding Under COVID </a>
</div>
<div class = "tabbar">
<li> <a class = "tabs" href = "./about.html"> Meet the Founder </a> </li>
<li> <a class = "tabs" href = "./resources.html"> Resources </a> </li>
<li> <a class = "tabs" href = "./covid19.html"> COVID-19 Info </a> </li>
</div>
</nav>
<section class = "covidchart">
<h2> Global COVID-19 Updates </h2> <br>
<p class = "caption"> Learning how to code online aligns with the World Health Organization (WHO) and other global efforts to promote social distancing. For more information on how to stay safe during COVID-19, please refer to the websites for the <span class = "link"> <a href = "https://www.who.int/emergencies/diseases/novel-coronavirus-2019" title = "Go to WHO site"> WHO </span></a> and the
<span class = "link"> <a href = "https://www.cdc.gov/coronavirus/2019-nCoV/index.html" title = "Go to CDC site"> Centers for Disease Control and Prevention (CDC)</span>. </a> </p>
<br>
<embed src="https://trekhleb.github.io/covid-19/" class = "jhudashboard">
</section>
<footer id = "contact">
<h2> Contact Us </h2> <br>
<form>
<input class = "infobox" type = "text" placeholder = "Name">
<input class = "infobox" type = "number" placeholder = "Age">
<input class = "infobox" type = "email" placeholder = "E-Mail">
<input class = "infobox" type = "text" placeholder = "Message">
<button type = "button" onclick = "myFunction()" title = "Submit Message"> Submit </button>
</form>
</footer>
<script src = "script.js"> </script>
</body>
</html>