-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
161 lines (138 loc) · 4.44 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="RIYUZAKHI">
<title>Souratron - Covid19Tracker-World</title>
</head>
//include your headers
<?php include_once 'header.php'; ?>
<script src="covid19.js"></script>
<script>
$(document).ready(function () {
Covid19();
});
</script>
<div class="alldash">
<a target="_blank" href="https://github.com/akshaymorab/covid-19"><div class="forkband">Fork @ <i class="fa fa-github"></i></div></a>
<div class="leftdash">
<br/>
<div class="globalcasesboard" id="GSB">
<b>Global Cases</b>
</div><br/>
<div class="global_boxes">
<div class="box1"><span id='confirmed'>Confirmed: ###</span></div>
<div class="box2"><span id='recovered'>Recovered: ###</span></div>
<div class="box3"><span id='death'>Deaths: ###</span></div>
</div>
<div class="countrycasesboard">
<b id='countryId'>Country Cases</b>
</div><br/>
<div class="global_boxes">
<div class="box1"><span id='cntryCnfrd'>Confirmed: ###</span></div>
<div class="box2"><span id='cntryRecvd'>Recovered: ###</span></div>
<div class="box3"><span id='cntryDeath'>Deaths: ###</span></div>
</div>
<div class="coronapiechart">
<div id="chartContainer" style="height:200px; width: 100%;overflow-x: scroll;overflow: hidden;"></div>
</div>
<br />
<div>
<div class="globalcasesboard" id="GSB">
<b id='countryRatio'>Country Ratio</b>
</div><br/>
<div>
<table id="cntryRatio" class='tableDesign bottom'>
<thead id="cntryRatioHead" class='thContent'>
<tr class="center aligned">
<th>Attribute</th>
<th>Value</th>
</tr>
</thead>
<tbody class="tbCovid19Rt"></tbody>
</table>
<table id="header-fixed"></table>
</div>
</div>
</div>
<div class='centerdash'>
<div id='loader' class='mapLoader'>
<img src='../images/loader.gif' class='ldrgif' />
</div>
<div id='cTracker' class="map"></div>
</div>
<div class="rightdash">
<div class="globalcasesboard" id="GSB">
<b>Global Details</b>
</div><br/>
<div class="countrywisetally">
<table id="cntryAttr" class='tableDesign bottom'>
<thead id="cntryHead" class='thContent'>
<tr class="center aligned">
<th>Rank</th>
<th>Country</th>
<th>Confirmed</th>
<th>Recovered</th>
<th>Death</th>
<th>Active</th>
<th>TodayCases</th>
<th>TodayDeath</th>
<th>Critical</th>
<th>Cases / 1Mn.</th>
<th>Deaths / 1Mn.</th>
<th>Tests</th>
<th>Tests / 1Mn.</th>
</tr>
</thead>
<tbody class="tbContent"></tbody>
</table>
<table id="header-fixed"></table>
</div>
<p class="SWH" >State Wise</p>
<div class="statewisetally TB">
<div class="statesboard">
<b>State 1</b><div class="deadptnt"></div><div class="actvptnt"></div><div class="rcrvdptnt"></div>
</div>
</div>
<div class='cntrychrt'>
<div id="chartContainer1" style="height: 200px; width: 100%;"></div>
</div>
<div class='cntrydtl'>
<div class="globalcasesboard" id="GSB">
<b id='cntryDetails'>Country Details</b>
</div><br/>
<table id="cntryDtl" class='tableDesign bottom'>
<thead id="cntryDtlHead" class='thContent'>
<tr class="center aligned">
<th>Attribute</th>
<th>Value</th>
</tr>
</thead>
<tbody class="tbCntDtl"></tbody>
</table>
<table id="header-fixed"></table>
<div class='symbology'>
<p style="color:white;text-align:center;width:100%;">Color Code: Number of Deaths</p>
<div class='legend'> < 250
<span style='position: relative;float: left;height: 15px;width: 25px;background: rgba(47,233,74,0.5);margin:2px;'></span>
</div>
<div class='legend'>
250-3000<span style='position: relative;float: left;height: 15px;width: 25px;background: rgba(255,215,0,0.5);margin:2px;'></p></span>
</div>
<div class='legend'>
> 3000<span style='position: relative;float: left;height: 15px;width: 25px;background: rgba(255,0,0,0.5);margin:2px;'></span>
</div>
</div>
</div>
</div>
</body>
</html>
//Include your footer
<?php include_once 'footer.php'; ?>
<style>
header{
background:#0f6eafaa;
}
.menubar,.mnuclse{
line-height:0;
}
</style>