-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (86 loc) · 4.74 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
<!DOCTYPE html>
<html>
<head>
<!-- Meta -->
<meta charset="utf-8">
<meta name="description" content="Real-time updates on the number of confirmed cases, recovered and deaths in an interactive way to display Live Map and Statistics of COVID-19.">
<meta name="keywords" content="covid, corona, pandemic, covid-19, virus, corona virus ">
<meta name="author" content="Saiarlen">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Og meta -->
<meta property="og:title" content="Covid-19 Intractive visualizer" />
<meta property="og:description" content="Real-time updates on the number of confirmed cases, recovered and deaths in an interactive way to display Live Map and Statistics of COVID-19." />
<meta property="og:image" content="img/covid_im.png" />
<title>Covid-19 Intractive visualizer</title>
<link rel="shortcut icon" type="image/png" href="img/fav_ico.png" />
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/jquery-jvectormap-2.0.5.css">
<link rel="stylesheet" type="text/css" href="css/jquery.modal.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/jssocials.css" />
<link rel="stylesheet" type="text/css" href="css/jssocials-theme-flat.css" />
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body id="particle">
<!-- Header Section -->
<p class="notif">Hover on a country or territory to see cases, deaths, and recoveries.</p>
<header class="head-wrap">
<h2>Covid-19 Intractive Visualizer</h2>
<hr>
<span></span>
<span class="pop-info"><a href="#ex1" rel="modal:open" >More Information</a></span>
</header>
<!-- Map Section -->
<section id="overlay" class="map_wrapper">
<div id="wmap"></div>
</section>
<!-- Footer Section -->
<footer class="data_box">
<h1 class="has-lines"><span>Total Counts</span></h1>
<p class="notif-bottom">Hover on a country or territory to see cases, deaths, and recoveries.</p>
<div class="l-g3">
<div class="level-item">
<div class="innr">
ACTIVE: <span id="activ"></span><span class="txt-sm">/</span><span id="cov-total-confirm" class="txt-sm"></span>
</div>
</div>
<div class="level-item">
<div class="innr">
RECOVERIES: <span id="cov-total-recoverd"></span>
</div>
</div>
<div class="level-item">
<div class="innr">
DEATHS: <span id="cov-total-dead"></span>
</div>
</div>
</div>
<div class="lupdate">
<span> Last Update: <span id="cov-time"></span></span>
</div>
</footer>
<!-- Model Popup Container -->
<div id="ex1" class="modal">
<h3 class="m-head">More Information</h3>
<p class="m-para">The purpose of this project is to provide, Real-time updates on the number of confirmed cases, recovered and deaths in an interactive way to display Live Map and Statistics of COVID-19. We wanted people to be ready to see this as something that
brings us all at once. As COVID-19 (coronavirus) spreads across the globe, this Website helps the people who want to display Covid-19 data from around the world by country.</p>
<p class="m-para">The Website is pulling all up-to-date COVID-19 data from Novel Covid for real-time updates, utilizing reliable sources from around the world. The TODAY cases/deaths are based on GMT (+0). The website pulls new data every 10 minutes, refresh to
see any changes.</P>
<span class="m-share">Share This Website</span>
<div id="share"></div>
<p class="m-qst">If you have questions, suggestions, or feedback,<br> <a href="mailto:sai.905902@gmail.com">Please send me an Email</a></p>
<p class="m-git"><a href="https://github.com/saiarlen/covid-19-world-statistics-website#covid-19-intractive-visualizer" target="_blank"><i class="fa fa-github"></i> Check my project in Github<a></p>
</div>
<!-- Javascript -->
<script src="js/jquery-1.12.4.min.js"></script>
<script src="js/particles.min.js"></script>
<script src="js/jquery.modal.min.js"></script>
<script src="js/jssocials.min.js"></script>
<script src="js/corona-virus-data-public.js"></script>
<!-- map js -->
<script src="js/jquery-jvectormap-2.0.5.min.js" type="text/javascript"></script>
<script src="js/jquery-jvectormap-world-mill-en.js"></script>
<!-- Site script -->
<script src="js/covid-script.js"></script>
</body>
</html>s