forked from Predator21X-bot/COVID-ZONE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog1.html
103 lines (86 loc) · 5.34 KB
/
blog1.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
<!DOCTYPE html>
<html>
<title>Blog1 -Rakesh, Kalyan</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<style>
body,
html {
height: 100%;
font-family: "Inconsolata", sans-serif;
}
.bgimg {
background-position: center;
background-size: cover;
background-image: url("https://images.hindustantimes.com/img/2021/02/18/550x309/81_1613651595579_1613651599924.jpg");
min-height: 75%;
}
.menu {
display: none;
}
</style>
<body>
<!-- Header with image -->
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-bottomleft w3-center w3-padding-large w3-hide-small">
<span class="w3-tag "> Defeating Covid like a Pro!
</span>
</div>
<div class="w3-display-middle w3-center red-text col">
<span class="w3-text-blue " style="font-size:90px"> DEFEATING<br>Covid </span>
</div>
<div class="w3-display-bottomright w3-center w3-padding-large">
<span class="w3-text-white"> </span>
</div>
</header>
<!-- Add a background color and large text to the whole page -->
<div class="w3-sand w3-grayscale w3-large">
<!-- About Container -->
<div class="w3-container" id="about">
<div class="w3-content" style="max-width:700px">
<h5 class="w3-center w3-padding-64"><span class="w3-tag w3-wide"> Defeating Covid like a Pro!
</span></h5>
<p>Hi , I am Rakesh, a resident of Kalyan and this is a blog sharing my experiences with the virus. I went out to buy some essentials on 25th of March , took all the necessary precautions but I don’t know how I contracted the virus. I started
showing symptoms and had 102 fever and my body ached. After two days I had a sore throat to such an extent that I wasn’t even able to eat food. Then I consulted a doctor and after hearing out the symptoms he suspected I had Covid and
sent me for a test via an ambulance. I felt very strange as I only went for a normal check up and I wasn’t ready for this but the doctor advised not to worry and get tested as it will make things clear. For two days I was kept in the
suspect ward and a swab test was done. Thank god they weren’t as painful as I thought it would be! I was quite shocked when my reports were out cause I thought it to be viral and also I had signs of recovery but I tested POSITIVE.</p>
<p>I was then shifted to the positive ward. Doctors started with the line of action and I was provided with paracetamols and immunity boosters. I was advised to drink warm water but I wasn’t able to drink it because of my sore throat. Doctor
asked me to drink as much water as I can if I could not go with warm water (Say 5-7 litres a day). I ate fruits like apples and oranges to boost my immunity. </p>
<p>After five days I started showing signs of recovery. Doctors always kept checking on us and made us feel better everyday. There was a psychiatrist named Dr. Aliya who helped us very much mentally to fight this virus. She helped a lot in
coping up with the stress caused due to our health conditions.
</p>
<p>After nine days the doctor asked me if I still had any symptoms and was discharged after I tested negative. Hats off to the doctors and the entire team for giving in all their time and efforts and keeping us as the utmost priority. On
the day of discharge I was provided with all the guidelines that I needed to follow. </p>
<div class="w3-panel w3-leftbar w3-light-grey">
<p><i>Everyone is doing their part in stopping this virus and we should cooperate and stay home and stay safe!</i></p>
<!-- <p>Chef, Coffeeist and Owner: Liam Brown</p> -->
</div>
<img src="https://www.incimages.com/uploaded_files/image/1920x1080/getty_869879452_370915.jpg" style="width:100%;max-width:1000px" class="w3-margin-top">
<p><strong>BY:</strong> Rakesh Kumar</p>
<p><strong>Address:</strong> 15 Adr street, 5015, NY</p>
</div>
</div>
<!-- Footer -->
<footer class="w3-center w3-light-grey w3-padding-48 w3-large">
</footer>
<script>
// Tabbed Menu
function openMenu(evt, menuName) {
var i, x, tablinks;
x = document.getElementsByClassName("menu");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablink");
for (i = 0; i < x.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" w3-dark-grey", "");
}
document.getElementById(menuName).style.display = "block";
evt.currentTarget.firstElementChild.className += " w3-dark-grey";
}
document.getElementById("myLink").click();
</script>
</body>
</html>