-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (87 loc) · 3.19 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Covid 19</title>
<style>
h1{
color:red;
margin-left: 34px;
text-align: center;
}
h2{
color:orange;
margin-left: 34px;
}
p{
color:rgb(38, 0, 255);
font-weight:bold;
margin-left: 34px;
margin-right: 34px;
}
.do{
color:green;
font-weight:bold;
margin-left: 34px;
}
.no{
color:red;
font-weight:bold;
margin-left: 34px;
}
body{
border: 5px ridge orange;
font-family: cursive;
}
a{
margin-left: 34px;
}
#corona{
size: 100px;
margin-left: 250px;
align:center;
}
</style>
</head>
<body>
<h1>Corona virus</h1>
<table>
<thead>
<tr>
<tbody>
<tr>
<td width=300px></td>
<td width=300px> <img id="corona" src="Corona.png"></td>
<td width=300px></td>
</tr>
</tbody>
</tr>
</thead>
</table>
<h2>When Corona virus was discovered in China........</h2>
<p>One day we heard the news about <em>Corona virus</em> (covid 19) in India . We didn't believe that.
</p>
<h2>When Corona virus came to India........</h2>
<p> After some days,they said <em>Corona virus</em> is spreading all over India.we didn't believe this also.Some days later our Indian prime minister said everyone should stay at home.
Some people obeyed this and some didn't .</p>
<h2>When we came to know that it was real........</h2>
<p>Days passed. They blocked the streets police force were standing everywhere.Then one wierd thing happened.Our street was also blocked!!!.Volunteers came and supplied essential items.</p>
<h2>Main thing........</h2>
<p>There is a way to fight <em>Corona virus</em>.It is to keep us clean.They told various do's and dont's. here are some.</p>
<h3 class="do">Do's</h3>
<ol class="do">
<li>Wash your hands with soap and water.
<li>Use hand sanitizers.
<li>Don't touch your face without washing your hands.
<li>Maintain social distancing.
</ol>
<h3 class="no">Don'ts</h3>
<ol class="no">
<li>Going out without mask.
<li>Not maintaining social distancing.
<li>Sneezing and coughing without covering the mouth.
<li>Going out unnecessarily.
</ol>
<a href="https://en.wikipedia.org/wiki/Coronavirus">Want to know more???</a>
</body>
</html>