-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsymptoms.html
131 lines (110 loc) · 3.22 KB
/
symptoms.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<title>Symptoms</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;
}
img {
width: 45%;
height: 45%;
border-radius: 50%;
}
tr td{
height: 300px;
text-align: center;
font-size: 25px;
}
tr{
border-bottom: 1px solid white;
}
table tr:last-child{
border-bottom: none;
}
@media screen and (max-width: 600px) {
ul li {
float: none;
}
}
</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" class="active">🤧 Symptoms</a></li>
<li><a href="prevention.html">🚫 Preventions</a></li>
<li><a href="mythbusters.html">🤯 Mythbusters</a></li>
</ul>
<div class="container" style="background-color: #666666 ;border-radius:25px; margin-top: 8px;">
<h3 style="color: white " align="center">Common symptoms:</h3>
<table align="center" >
<tr>
<td>Fever</td>
<td><img src="images/fever.jpg"></td>
</tr>
<tr>
<td>Tiredness</td>
<td><img src="images/tiredness.jpg" ></td>
</tr>
<tr>
<td>Dry cough</td>
<td><img src="images/drycough.jpg" class="left"></td>
</tr>
</table>
<br>
<br>
<h3 style="color: white" align="center">Some people may experience:</h3>
<table align="center">
<tr>
<td>Aches and pains</td>
<td><img src="images/ache.png"> </td>
</tr>
<tr>
<td>Nasal congestion</td>
<td><img src="images/nasal.jpg"></td>
</tr>
<tr>
<td>Runny nose</td>
<td><img src="images/runny.png" ></td>
</tr>
<tr>
<td>Sore throat</td>
<td><img src="images/sore.jpg"></td>
</tr>
<tr>
<td>Diarrhoea</td>
<td><img src="images/diarrhoea.jpg"></td>
</tr>
</table>
</div>
<div class="row" >
<div class="col-lg-3 col-sm-6" style="text-align: center;"><a href="https://www.pmcares.gov.in/en/" style="color: #000;" >Donate</a></div>
<div class="col-lg-3 col-sm-6" style="text-align: center;"><a href="https://www.mygov.in/aarogya-setu-app?app=aarogya&target=browser" style="color: #000;">Download App</a></div>
<div class="col-lg-3 col-sm-6" style="text-align: center;"><a href="https://www.google.com/maps/search/food+shelters/@41.6264182,65.7279774,3.02z" style="color: #000;">Food shelters</a></div>
<div class="col-lg-3 col-sm-6" style="text-align: center;"><a href="https://www.worldometers.info/coronavirus/#news" style="color: #000;"> News</a></div>
</div>
</body>
</html>