-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (60 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Coronavirus awareness</title>
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<<link rel="stylesheet" type="text/css" href="style.css">
<!-- Bootstrap Scripts -->
<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/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<h2 class="classTitle">Coronavirus prevention cards</h2>
<div class="box">
<div class="content">
<img src="images/7.png">
<p>Regularly and thoroughly clean your hands with an alcohol-based hand rub or wash them with soap and water.</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/5.png">
<p>Avoid travel if you have fever or cough</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/1.png">
<p>Eat only well cooked food</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/4.png">
<p>If you have fever, cough and difficulty breathing seek medical care ASAP</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/2.png">
<p>When coughing and sneezing cover mouth and nose with flexed elbow or tissue</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/3.png">
<p>Avoid close contact with animals that are sick</p>
</div>
</div>
<div class="box">
<div class="content">
<img src="images/6.png">
<p>If you are coughing or sneezing, wear a mask and must know how to use it and dispose of it properly</p>
</div>
</div>
</div>
</body>
</html>