-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtips-faq.html
More file actions
82 lines (80 loc) · 5.22 KB
/
tips-faq.html
File metadata and controls
82 lines (80 loc) · 5.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Qorona Quest</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="jquery-1.12.4.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css%22%3E>
<link href="https://fonts.googleapis.com/css2?family=Alata&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Russo+One&family=Varela+Round&display=swap" rel="stylesheet">
<!-- <style> -->
<!-- /* body { padding-left: 0px;
background-image: url("https://99designs-blog.imgix.net/blog/wp-content/uploads/2018/12/Gradient_builder_2.jpg?auto=format&q=60&w=1815&h=1361.25&fit=crop&crop=faces");
} */ -->
<!-- /* </style> */ -->
</head>
<body>
<script src="script.js"></script>
<section class="menu">
<div class="navbar">
<!-- <img src =
"" class = "logo"> -->
<div><a class="title" href= "index.html"> Cov-Ed</a></div>
<div><a class="option" href= "index.html">Home</a></div>
<div class = "dropdown">
<a class="dropbtn">Tips
<i class="dropdown"></i>
</a>
<div class="dropdown-content">
<a href="tips-precautions.html">Precautions</a>
<a href="tips-faq.html">FAQs</a>
<a href="tips-health.html">Physical + Mental Health</a>
</div>
</div>
<div><a class = "option" href= "take-action.html">Take Action</a></div>
<div><a class="about" href= "about.html">About</a></div>
</div>
<div class = "faq-intro">
<h1 class = "faq-title">Frequently Asked Questions Concerning the COVID-19</h1>
<p class = "faq-info">These questions are answered by the WHO organization</p>
<div class = "faq">
<button class="collapsible">Can mosquitos spread the virus that causes COVID-19?</button>
<div class="content">
<p>At this time, CDC has no data to suggest that this new coronavirus or other similar coronaviruses are spread by mosquitoes or ticks. The main way that COVID-19 spreads is from person to person.</p>
</div>
<button class="collapsible">Will warm weather stop the outbreak of COVID-19?</button>
<div class="content">
<p>It is not yet known whether weather and temperature affect the spread of COVID-19. Some other viruses, like those that cause the common cold and flu, spread more during cold weather months but that does not mean it is impossible to become sick with these viruses during other months. There is much more to learn about the transmissibility, severity, and other features associated with COVID-19 and investigations are ongoing.</p>
</div>
<button class="collapsible">Am I at risk for COVID-19 from mail, packages, or products?</button>
<div class="content">
<p>There is still a lot that is unknown about COVID-19 and how it spreads. Coronaviruses are thought to be spread most often by respiratory droplets. Although the virus can survive for a short period on some surfaces, it is unlikely to be spread from domestic or international mail, products or packaging. However, it may be possible that people can get COVID-19 by touching a surface or object that has the virus on it and then touching their own mouth, nose, or possibly their eyes, but this is not thought to be the main way the virus spreads.</p>
</div>
<button class="collapsible">Is it advisable to wear a mask while exercising?</button>
<div class="content">
<p>It is definitely NOT advisable to wear a mask while exercising, especially if you are doing yoga. Masks can reduce the ability to breathe comfortably. Wearing it while exercising can make you more susceptible to the virus. Sweat can promote the growth of micro-organisms, which is not good if you are wearing a mask. Exercise at home. </p>
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
</script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</body>
</html>