-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
152 lines (140 loc) · 6.75 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HealthCare</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap" rel="stylesheet">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="nav">
<div class="logo">
<h4>HealthCare.</h4>
</div>
<div class="links">
<a href="#" class="mainlink">Corona Updates</a>
<a href="#">Help</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</div>
<!-- LANDING PAGE -->
<div class="landing">
<div class="landingText" data-aos="fade-up" data-aos-duration="1000">
<h1>Stay In.<span style="color:#e0501b;font-size: 4vw"> Stay Safe.</span> </h1>
<h3>Lets all work together to put an end to this pandemic. <br> Help stop the spread.</h3>
<div class="btn">
<a href="#">Learn More</a>
</div>
</div>
<div class="landingImage" data-aos="fade-down" data-aos-duration="2000">
<img src="img/bg.png" alt="">
</div>
</div>
<!-- ABOUT SECTION -->
<div class="about">
<div class="aboutText" data-aos="fade-up" data-aos-duration="1000">
<h1>Why is it important that <br> <span style="color:#2f8be0;font-size:3vw">You Stay Home?</span> </h1>
<img src="img/doctor-woman-400px.png" alt="">
</div>
<div class="aboutList" data-aos="fade-left" data-aos-duration="1000">
<ol>
<li>
<span>01</span>
<p>Covid-19, which is now a fast growing global pandemic. The number of confirmed cases worldwide has exceeded 25,65,000 due to rapid spreading of the virus.</p>
</li>
<li>
<span>02</span>
<p>Covid-19, spreads very easily, much easier than many other regular illnesses we deal with on a regular basis. That's what makes it so dangerous.</p>
</li>
<li>
<span>03</span>
<p>The best course of action is to stay at home prevent the spread of the disease as well as hospitals getting overwhelmed with patients who simply shoudn't be there.</p>
</li>
<li>
<span>04</span>
<p>As of today, there is no know cure and no approved vaccine for Covid-19</p>
</li>
</ol>
</div>
</div>
<!-- INFO SECTION -->
<div class="infoSection">
<div class="infoHeader" data-aos="fade-up" data-aos-duration="1000">
<h1>Things you could do during the <br> <span style="color:#e0501b">Coronavirus Quarantine.</span> </h1>
</div>
<div class="infoCards">
<div class="card one" data-aos="fade-up" data-aos-duration="1000">
<img src="img/movie.png" class="cardoneImg" alt="" data-aos="fade-up" data-aos-duration="1100">
<div class="cardbgone"></div>
<div class="cardContent">
<h2>Binge Watch</h2>
<p>Binge-watch all your favorite TV Shows or Movies during this Quarantine!</p>
<a href="#">
<div class="cardBtn">
<img src="img/next.png" alt="" class="cardIcon">
</div>
</a>
</div>
</div>
<div class="card two" data-aos="fade-up" data-aos-duration="1300">
<img src="img/learn.png" class="cardtwoImg" alt="" data-aos="fade-up" data-aos-duration="1200">
<div class="cardbgtwo"></div>
<div class="cardContent">
<h2>Learn a New Skill</h2>
<p>Try a new recipe, Write a blog or Learn a new language this Quarantine!</p>
<a href="#">
<div class="cardBtn">
<img src="img/next.png" alt="" class="cardIcon">
</div>
</a>
</div>
</div>
<div class="card three" data-aos="fade-up" data-aos-duration="1600">
<img src="img/videocall.png" class="cardthreeImg" alt="" data-aos="fade-up" data-aos-duration="1300">
<div class="cardbgone"></div>
<div class="cardContent">
<h2>Video Call</h2>
<p>Have fun video calling your friends or family this Quarantine!</p>
<a href="#">
<div class="cardBtn">
<img src="img/next.png" alt="" class="cardIcon">
</div>
</a>
</div>
</div>
</div>
</div>
<!-- BANNER AND FOOTER -->
<div class="banner">
<div class="bannerText" data-aos="fade-right" data-aos-duration="1000">
<h1>Download the HealthCare App Today. <br> <span style="font-size:1.6vw;font-weight:normal" class="bannerInnerText">
Stay Updated and get all your medical needs taken care of!
</span> </h1>
<a href="#"> <img src="img/AndroidPNG.png" alt=""> </a>
<a href="#"> <img src="img/iosPNG.png" alt=""> </a>
</div>
<div class="bannerImg" data-aos="fade-up" data-aos-duration="1000">
<img src="img/MobileApp.png" alt="">
</div>
</div>
<div class="footer">
<h2>HealthCare.</h2>
<div class="footerlinks">
<a href="#" class="mainlink">Corona Updates</a>
<a href="#">Help</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>