-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
101 lines (94 loc) · 5.5 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Covid near me</title>
<link rel="stylesheet" href="css/materialize.min.css">
<meta name="og:title" property="og:title" content="Covid-19 tracker. Find corona virus near you">
<meta name="description" content="Covid-19 tracker. Find corona virus near you">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="main.js?ver=2.06"></script>
<link rel="icon" href="css/icon.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163252735-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-163252735-2');
</script>
</head>
<body class="grey darken-4">
<ul class="sidenav grey darken-4" id="mobile-demo">
<li><a href="analytics.html" class="teal-text">Analytics</a></li>
<li><a href="about.html" class="teal-text">About</a></li>
<li><a href="team.html" class="teal-text">Our Team</a></li>
</ul>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper grey darken-4 z-depth-3" style="z-index: 1;">
<a href="index.html"><img src="logo_1.png?ver=2" alt=""
class="brand-logo hide-on-med-and-down show-on-large" width="16%"
style="position: absolute; top: 50%;-ms-transform: translateY(-50%); transform: translateY(-50%);"></a>
<a href="index.html"><img
class="left brand-logo hide-on-large-only hide-on-small-only show-on-med" src="logo_1.png?ver=2" alt="" width="26%"
style="position: absolute; top: 50%;-ms-transform: translateY(-50%); transform: translateY(-50%);"></a>
<a href="index.html"><img src="logo_1.png?ver=2" alt=""
class="left brand-logo hide-on-med-and-up show-on-small" width="50%"
style="position: absolute; top: 50%;-ms-transform: translateY(-50%); transform: translateY(-50%);"></a>
<a href="#" data-target="mobile-demo" class="right teal-text sidenav-trigger"><i
class="material-icons">menu</i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down teal lighten-2">
<li><a href="analytics.html">Analytics</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Our Team</a></li>
</ul>
</div>
</nav>
</div>
<div class="row container" style="width: 95%;">
<div class="card grey darken-3" style="border-radius: 10px;">
<div class="card-content grey-text">
<span class="card-title"><i class="material-icons left tiny" style="color:teal">brightness_1</i> <span
style="color:rgb(216, 216, 216)">About CovidNearMe</span></span>
<p>CovidNearMe is a non-profit website that provides the users the number of Covid-19 patient in their region.
Unlike other websites which are more statics-oriented, this website is build-up from the ground by keeping the
user as our no.1 priority.</p>
<br>
<p>Powering this website up is an amazing team of students that work constantly inorder to keep the website's
data upto date.</p>
<br>
<span class="card-title"><i class="material-icons left tiny" style="color:teal">brightness_1</i> <span
style="color:rgb(216, 216, 216)">How does this website works?</span></span>
<p>This website uses the location of user to search the district and the state(region) of the user. Then the
data for that particular district and state is retrieved and presented to the user.<br>Along with that the
website displays the visual data of the registered patients on a map that helps to user to get the idea of no.
of cases/potenial cases around him/her.</p><br>
<span class="card-title"><i class="material-icons left tiny" style="color:teal">brightness_1</i> <span
style="color:rgb(216, 216, 216)">How frequently the data is updated?</span></span>
<p>The data is updated every hour is verified by our team members and volunteers and the visual
data is updated twice a day</p><br>
<span class="card-title"><i class="material-icons left tiny" style="color:teal">brightness_1</i><span
style="color:rgb(216, 216, 216)">Is this official? What are the Sources?</span> </span>
<p>No, this is not. This is a community project.</p>
<p>The sources include all the major news outlet, govt. websites, crowdsourced database and the offical handles. <br>-<i> By the community, for the community!</i>
</p>
</div>
</div>
</div>
<div class="row show-on-small hide-on-med-and-up">
<div class="col s12">
<center><a href="https://paytm.com/helpinghand/pm-cares-fund" class="waves-effect waves-light btn z-depth-3 pink accent-3" style="border-radius: 5px;width: 70%;"><i class="material-icons right" style="margin-right: 2%;">local_hospital</i>Donate to pm cares fund</a></center>
</div>
</div>
<footer class="page-footer grey darken-4">
<div class="footer-copyright grey darken-3 grey-text">
<div class="container">
<center>An initiative to find corona virus near you by the students of <a href="team.html" class="grey-text">DIT UNIVERSITY</a></center>
</div>
</div>
</footer>
<script src="js/materialize.min.js"></script>
</body>
</html>