-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmythbusters.html
66 lines (56 loc) · 1.94 KB
/
mythbusters.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
65
66
<!DOCTYPE html>
<html>
<head>
<title>mythbusters</title>
<style>
#nav {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #bd2113;
position: -webkit-sticky;
position: sticky;
top: 0;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body style="background-color: #e8e6e6;">
<h1 style="color: black;text-align: center;font-size: 60px;font-family: Elephant;">COVID-19</h1>
<ul id="nav">
<li><a href="homepage.html" >🏠 Home</a></li>
<li><a href="symptoms.html">🤧 Symptoms</a></li>
<li><a href="prevention.html">🚫 Preventions</a></li>
<li><a href="mythbusters.html" class="active">🤯 Mythbusters</a></li>
</ul>
<div class="container">
<ul>
<li>5G mobile networks DO NOT spread COVID-19</li>
<li>Exposing yourself to the sun or to temperatures higher than 25C degrees DOES NOT prevent the coronavirus disease (COVID-19)
</li>
<li>You can recover from the coronavirus disease (COVID-19). Catching the new coronavirus DOES NOT mean you will have it for life.
</li>
<li>Being able to hold your breath for 10 seconds or more without coughing or feeling discomfort DOES NOT mean you are free from the coronavirus disease (COVID-19) or any other lung disease.
</li>
<li>Drinking alcohol does not protect you against COVID-19 and can be dangerous
</li>
<li>COVID-19 virus can be transmitted in areas with hot and humid climates
</li>
</ul>
</div>
</body>
</html>