Skip to content

Commit ca532d3

Browse files
authored
Merge branch 'master' into img1
2 parents 464cbc3 + dc6f6c4 commit ca532d3

File tree

16 files changed

+1251
-100
lines changed

16 files changed

+1251
-100
lines changed

Diff for: CONTRIBUTORS.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[@arijaya](https://github.com/AriJaya07)
2+
13
[@akashjoffl](https://github.com/akashjoffl)
24

35
[@excel61](https://github.com/excel61)

Diff for: COVID 19 Resource Site/about.html

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
7+
<title>About</title>
8+
<!-- ... -->
9+
</head>
10+
<body>
11+
<header class="text-gray-400 bg-gray-900 body-font">
12+
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
13+
<a class="flex title-font font-medium items-center text-white mb-4 md:mb-0">
14+
15+
<span class="ml-3 text-xl">COVID-19 Resource India</span>
16+
</a>
17+
<nav class="md:ml-auto md:mr-auto flex flex-wrap items-center text-base justify-center">
18+
<a href="index.html" class="mr-5 hover:text-white">Resources</a>
19+
<a href="disclaimer.html" class="mr-5 hover:text-white">Disclaimer</a>
20+
<a href="statewise.html" class="mr-5 hover:text-white">State-Wise</a>
21+
<a href="quicktips.html" class="mr-5 hover:text-white">Quick Tips</a>
22+
<a href="about.html" class="mr-5 hover:text-white">About</a>
23+
</nav>
24+
25+
</div>
26+
</header>
27+
28+
<section class="text-gray-400 body-font bg-gray-900">
29+
<div class="container px-5 py-24 mx-auto">
30+
<div class="flex flex-col text-center w-full mb-20">
31+
<h2 class="text-xs text-blue-400 tracking-widest font-medium title-font mb-1">COVID-19 RESOURCE</h2>
32+
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-white">ABOUT</h1>
33+
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">This website is created by Anukiran Ghosh.
34+
Website concept inspiration- covid19-twitter.in</p>
35+
</div>
36+
37+
</section>
38+
39+
40+
</body>
41+
</html>
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+

Diff for: COVID 19 Resource Site/disclaimer.html

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
7+
<title>Disclaimer</title>
8+
<!-- ... -->
9+
</head>
10+
<body>
11+
<header class="text-gray-400 bg-gray-900 body-font">
12+
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
13+
<a class="flex title-font font-medium items-center text-white mb-4 md:mb-0">
14+
15+
<span class="ml-3 text-xl">COVID-19 Resource India</span>
16+
</a>
17+
<nav class="md:ml-auto md:mr-auto flex flex-wrap items-center text-base justify-center">
18+
<a href="index.html" class="mr-5 hover:text-white">Resources</a>
19+
<a href="disclaimer.html" class="mr-5 hover:text-white">Disclaimer</a>
20+
<a href="statewise.html" class="mr-5 hover:text-white">State-Wise</a>
21+
<a href="quicktips.html" class="mr-5 hover:text-white">Quick Tips</a>
22+
<a href="about.html" class="mr-5 hover:text-white">About</a>
23+
</nav>
24+
25+
</div>
26+
</header>
27+
28+
<section class="text-gray-400 body-font bg-gray-900">
29+
<div class="container px-5 py-24 mx-auto">
30+
<div class="flex flex-col text-center w-full mb-20">
31+
<h2 class="text-xs text-blue-400 tracking-widest font-medium title-font mb-1">COVID-19 RESOURCE</h2>
32+
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-white">DISCLAIMER</h1>
33+
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">This website redirects you to tweets from various cities related to COVID-19 emergency resource information. The website does not verify the authenticity of the information available. Please verify the authenticity of any information you recieve via this website yourself.
34+
This website or it's owner isn't responsible for any loss due to inaccurate information. This website doesn't feature any information by itself, it only redirects you to tweets related to your selection.</p>
35+
</div>
36+
37+
</section>
38+
39+
40+
</body>
41+
</html>

Diff for: COVID 19 Resource Site/index.html

+343
Large diffs are not rendered by default.

Diff for: COVID 19 Resource Site/quicktips.html

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
7+
<title>Quick Tips</title>
8+
<!-- ... -->
9+
</head>
10+
<body>
11+
<header class="text-gray-400 bg-gray-900 body-font">
12+
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
13+
<a class="flex title-font font-medium items-center text-white mb-4 md:mb-0">
14+
15+
<span class="ml-3 text-xl">COVID-19 Resource India</span>
16+
</a>
17+
<nav class="md:ml-auto md:mr-auto flex flex-wrap items-center text-base justify-center">
18+
<a href="index.html" class="mr-5 hover:text-white">Resources</a>
19+
<a href="disclaimer.html" class="mr-5 hover:text-white">Disclaimer</a>
20+
<a href="statewise.html" class="mr-5 hover:text-white">State-Wise</a>
21+
<a href="quicktips.html" class="mr-5 hover:text-white">Quick Tips</a>
22+
<a href="about.html" class="mr-5 hover:text-white">About</a>
23+
</nav>
24+
25+
</div>
26+
</header>
27+
28+
<section class="text-gray-400 body-font bg-gray-900">
29+
<div class="container px-5 py-24 mx-auto">
30+
<div class="flex flex-col text-center w-full mb-20">
31+
<h2 class="text-xs text-blue-400 tracking-widest font-medium title-font mb-1">COVID-19 RESOURCE</h2>
32+
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-white">QUICK TIPS</h1>
33+
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">* Wear a mask whenever you go outside
34+
* Don't go outside unless necessary
35+
* Sanitize & wash your hands
36+
* Avoid touching your face & nose
37+
* Stay & work from home, if possible
38+
* Maintain Social Distancing
39+
* Avoid visiting crowded places
40+
* Don't believe in rumours
41+
* Get vaccinated</p>
42+
</div>
43+
44+
</section>
45+
46+
47+
</body>

0 commit comments

Comments
 (0)