-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfacts.html
More file actions
50 lines (49 loc) · 2.68 KB
/
facts.html
File metadata and controls
50 lines (49 loc) · 2.68 KB
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
<!DOCTYPE html>
<html>
<head>
<title>COVID-19 Facts</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Goudy+Bookletter+1911" rel="stylesheet">
<link rel="stylesheet" href="project0.css">
</head>
<body>
<img src="sneeze.jpg" class="text-left">
<h1>COVID-19 Pandemic</h1>
<div class="alert alert-primary right" role="alert">
<nav>
<a class = "btn btn-dark" href= "index.html">Home</a>
<a class = "btn btn-dark" href= "facts.html">Facts</a>
<a class = "btn btn-dark" href= "prevention.html">Prevention</a>
<a class = "btn btn-dark" href= "social_distance.html">Survival Guide</a>
</nav>
</div>
<div class = "row">
<div class = "center">
<h3>Get the Facts</h3>
</div>
</div>
<div>
<h2>How it spreads</h2>
<p class="maintext">This is a new virus, so we're still learning how it spreads and how long the virus can live on surfaces. The most likely transmission is thought to be via respiratory droplets (a cough or sneeze) from someone in relatively close proximity (roughly 6 feet). It may also be possible to contract the virus by touching an infected surface, then your own eyes, nose, or mouth. </p>
</div>
<div>
<h2>Incubation</h2>
<p class="maintext">The incubation period is thought to be anywhere from 2 to 14 days, which is why many states have called for social distancing measures for at least two weeks.</p>
</div>
<div>
<h2>Symptoms</h2>
<p class="maintext">Not everyone exhibits the same symptoms, but in general, the most common things to watch for are fever, cough, and shortness of breath.</p>
</div>
<div>
<h2>Treatment</h2>
<p class="maintext">We don't yet have a vaccine to protect against COVID-19. Be aware that older persons and those with underlying medical conditions are at greater risk for complications or even death from this virus. Prevention and social distancing are currently our best weapons.</p>
</div>
<footer>
<p>Citations</p>
<nav>
<a href= "https://www.cdc.gov/coronavirus/2019-nCoV/index.html">CDC</a>|
</nav>
</footer>
</body>
</html>