-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (160 loc) · 5.23 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
153
154
155
156
157
158
159
160
161
162
163
164
165
<!-- some assets were created with MockUPhone https://creativecommons.org/licenses/by/3.0/ -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A mobile app for real-time COVID-19 updates"
/>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/build/pure-min.css"
integrity="sha384-oAOxQR6DkCoMliIh8yFnu25d7Eq/PHS21PClpwjOTeU2jRSq11vu66rf90/cZr47"
crossorigin="anonymous"
/>
<title>CoviData | India</title>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/build/pure-min.css"
/>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/build/grids-responsive-min.css"
/>
<link
rel="stylesheet"
href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Inconsolata|Source+Sans+Pro|Megrim&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="header">
<div
class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed main-menu"
>
<div class="nav-title">
<div>
<img src="./images/CoviData.svg" alt="CoviData" class="logo" />
</div>
<div>
<p class="title">
CoviData
</p>
</div>
<div class="mobile-button">
<a
href="http://cheeseball.co/covidata/app-release.apk"
download="covidata.apk"
class="pure-button pure-button-primary w3-animate-top my-btn"
><p class="btn-text">Download APK</p>
<i class="fa fa-download" style="margin-left: 0.2em;"></i
></a>
</div>
</div>
</div>
</div>
<div class="splash-container">
<div class="features">
<h1 class="main-heading w3-animate-top">
Get Real-time COVID-19 Updates on your phone
</h1>
<a
href="http://cheeseball.co/covidata/app-release.apk"
download="covidata.apk"
class="pure-button pure-button-primary w3-animate-top"
><p class="btn-text">Download APK</p>
<i class="fa fa-download" style="margin-left: 0.2em;"></i
></a>
</div>
<div class="mockup w3-container">
<img
src="./images/snaplow.png"
alt="CoviData"
class="phone-mockup w3-animate-top"
/>
</div>
</div>
<div class="content-wrapper" id="about">
<div class="content">
<h2 class="content-head is-center">
Why CoviData?
</h2>
<div class="pure-g">
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<h3 class="content-subhead">
<i class="fa fa-rocket"></i>
Real-time Data
</h3>
<p>
Get State-wise or total COVID-19 data in real-time on your
fingertips. Stay aware, stay safe.
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<h3 class="content-subhead">
<i class="fa fa-dashboard"></i>
Analytics
</h3>
<p>
Get real-time data about how many cases of COVID-19 are active,
recovered and the total deaths.
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<h3 class="content-subhead">
<i class="fa fa-mobile"></i>
Dark Theme
</h3>
<p>
With COVID-19 stressing everyone out, the last thing you want is
stress on your eyes, that's why CoviData ships with a dark theme!
</p>
</div>
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-4">
<h3 class="content-subhead">
<i class="fa fa-github"></i>
Open Source
</h3>
<p>
The complete project is Open Source, the source can be found at
<a href="https://github.com/abhishekUpmanyu/covidata_india"
>@abhishekUpmanyu/covidata_india</a
>
</p>
</div>
</div>
<small
style="
display: block;
width: 100%;
text-align: center;
margin-top: 0.4em;
"
>
some assets were created with
<a href="https://mockuphone.com" target="_blank">MockUPhone</a>
<a href="https://creativecommons.org/licenses/by/3.0/" target="_blank"
>License</a
></small
>
</div>
<div class="footer is-center">
<small
>Website made with <i class="fa fa-heart" aria-hidden="true"></i> by
<a href="https://github.com/zaryanz">@zaryanz</a>
</small>
</div>
</div>
</body>
</html>