-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<nav class="navbar navbar-inverse" >
<div class="container-fluid">
<div class="navbar-header">
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="index.html">Home</a></li>
<li class="active"><a href="worldlive.html">Get world live data</a></li>
<li class="active" ><a href="current.html">Get Covid data of your current location</a></li>
<li class="active"><a href="globe.html">Covid-19 Global tracker</a></li>
<li class="active"><a href="local.html">Covid-19 Indian State tracker</a></li>
<li class="active"><a href="district.html">Covid-19 Indian city/district tracker</a></li>
</ul>
</div>
</nav>
<body style="background-image: url('homefinal.jpg');background-size: cover;background-repeat: no-repeat;" >
<p class="text-center" style="font-size: xx-large;font-weight: bolder;text-shadow: 2px 2px 8px #968e8e;">
Welcome to the Covid-19 Tracker Website designed by me !
</p>
<p class="text-center" style="font-size: medium;">
We are living in an era in which Coronavirus is spreading rapidly across the globe.
Seeing the present day scenario,it is highly advised to keep the track of covid cases.
<br>This website serves the purpose of covid tracking.
<br>You can navigate through the tabs in the navigation bar to
get the current data of world,of your location ,global,state and districts data!
<br> Stay Home! Stay Safe!
</p>
<p style="font-size: medium;"><kbd>Get world live data</kbd>:This tab will show the live world covid19 data.
<br><kbd>Get Covid data of your current location</kbd>:This tab will fetch your location and covid data of that location.
<br><kbd>Covid-19 Global tracker</kbd>:This tab will show the covid19 data of any country that you search.
<br><kbd>Covid-19 Indian State tracker</kbd>:This tab will show the covid data of any state of India that you search.
<br><kbd>Covid-19 Indian city/district tracker</kbd>:This tab will show the covid19 data of any city/district of India that you search.
</p>
</body>
</html>