-
Notifications
You must be signed in to change notification settings - Fork 0
/
prevent.html
156 lines (152 loc) · 5.76 KB
/
prevent.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>what should be done to prevent covid-19</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none
}
#heading{
background-color: rgb(210, 241, 170);
color: rgb(85, 66, 35);
font-size: 40px;
text-align: center;
padding: 20px 20px 25px 20px;
}
h2{
width: 50%;
font-size: 32px;
padding: 24px 24px 16px 30px;
text-align: left;
text-decoration: underline;
}
#body-para{
width: 100%;
font-size: 28px;
line-height: 40px;
font-weight: 600;
color: rgb(206, 172, 172);
padding: 20px;
}
main{
width: 100%;
text-align: left;
}
#prevention{
width: 100%;
padding: 24px;
}
.pre-list1,.pre-list2{
width: 100%;
padding: 10px;
}
.do,.dont{
font-size: 37px;
color: rgb(30, 17, 53);
padding: 10px;
}
.list{
padding: 16px 16px 16px 100px;
font-size: 24px;
}
.do,.dont{
width: 65%;
padding: 20px;
}
.do:hover{
background-color: green;
transform: scale(1.01);
}
.dont:hover{
background-color: red;
transform: scale(1.01);
}
#img1{
float: right;
width: 380px;
height: 350px;
padding: 10px;
}
#img2{
width: 100%;
height: 400px;
}
table{
margin: auto;
}
#images{
width:500px;
height: 350px;
transition: all 0.3s linear;
}
#images:hover{
transform:scale(1.5);
}
td{
padding: 24px;
}
</style>
</head>
<body style="background-color: rgb(227, 243, 241);">
<h1 id="heading">Preventions Of COVID-19</h1>
<Main>
<h2>SOME DO & DONT :</h2>
<div id="prevention">
<img id="img1" src="https://dae.gov.in/covid19/img/ad1.jpg" alt="pic of prevention">
<details class="prev-list1">
<summary class="do">Do's</summary>
<ul class="list" type="circle" style="color: green;">
<li>avoid contact with sick people</li>
<li>stay home if sick</li>
<li>cough or sneeze into yourelbow</li>
<li>disinfect frequently touched surfaces</li>
<li>wash your hands often</li>
<li>avoid crowds and non-essential travel</li>
</ul>
</details>
<details class="prev-list2" style="color: red;">
<summary class="dont">Don't</summary>
<ul class="list" type="circle">
<li>touch your face</li>
<li>wear a facemask unless you have symptoms</li>
<li>avoid/delay vaccination date</li>
<li>avoid use of hand sanitizer</li>
</ul>
</details>
</div>
<div>
<img id="img2" src="https://www.icpcn.org/wp-content/uploads/2020/03/dec8bb47-7180-45b9-96c1-8d313b22cd95-1024x512.jpg" alt="prevention-tips">
</div>
</Main>
<div class="image-gal">
<h2 style="width: 100%; text-align: center;">SOME USEFUL IMAGES</h2>
<table>
<tr id="firstrow">
<td>
<img id="images" src="https://www.centracare.com/images/blog/When_to_Seek_Care_revised.png">
</td>
<td>
<img id="images" src="https://www.clearias.com/up/Coronavirus-Prevention.png">
</td>
</tr>
<tr id="secondrow">
<td>
<img id="images" src="https://www.fccnn.com/incoming/6991750-xxblg0-mayo-vax-campaign.PNG/alternates/BASE_LANDSCAPE/mayo%20vax%20campaign.PNG">
</td>
<td>
<img id="images" src="https://www.iadc.org/wp-content/uploads/2021/02/DrillBits-2021February-CDC-COVID19-CommunicationsToolkit-EssentialWorkers.png" alt="long trees">
</td>
</tr>
</table>
</div>
<footer style="font-size: 20px; padding: 18px; background-color: lightgray ; text-align: center;">
<a href="index.html"><input type="button" value="Home Page" style="font-size: 15px; padding:5px; background-color: azure;"></a>
<p>©created by Arman </p>
<p><strong>email : </strong><i><a href="mailto:[email protected]">[email protected]</a><p>
</footer>
</body>
</html>