-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
162 lines (141 loc) · 3.47 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
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
<!DOCTYPE html>
<html>
<title>
About Section
</title>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
* {box-sizing: border-box;}
body {
font-family: "Lato", sans-serif;
transition: background-color .5s;
background-image: url('/static/test1.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
.topnav {
overflow: hidden;
background-color: black;
margin-top:50px;
}
.topnav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 10px 10px;
text-decoration: none;
font-size: 22px;
padding-left:30px;
padding-right:30px;
}
.topnav a:hover {
background-color: lightgrey;
color: black;
}
.topnav a.active {
background-color: green;
color: white;
}
.topnav .login-container {
float: right;
}
.topnav input[type=text] {
padding: 6px;
margin-top: 8px;
font-size: 17px;
border: none;
width:120px;
}
.topnav .login-container button {
float: right;
padding: 6px 10px;
margin-top: 8px;
margin-right: 16px;
background-color:grey ;
color: white;
font-size: 17px;
border: none;
cursor: pointer;
}
.topnav .
.topnav .login-container button:hover {
background-color: lightgrey;
}
@media screen and (max-width: 600px) {
.topnav .login-container {
float: none;
}
.topnav a, .topnav input[type=text],.topnav .login-container button {
float: none;
display: block;
text-align: left;
width: 100%;
margin: 0;
padding: 14px;
}
.topnav input[type=text] {
border: 1px solid #ccc;
}
.error {
color: red;
font-size: 90%;
}
.topnav-right {
float: right;
}
</style>
</head>
<body bgcolor="cyan">
<div class="topnav">
<a href="{{ url_for('infer') }}">Home</a>
<a class="active" href="{{ url_for('about') }}">About</a>
<a href="{{ url_for('what') }}">What to do</a>
<a href="{{ url_for('contact') }}">Contact Us</a>
<div class="topnav-right">
<a href="{{ url_for('admin') }}">Admin login</a>
</div>
<div class="login-container">
</div>
</div>
<div style="padding-left:16px">
<center>
<h1><font color="white">Corona Virus Predictor </font></h1></center>
<br>
<font size='5' color='red'><u><b>ABOUT CORONAVIRUS:</b></u></font><br><br>
<font size='3' color='white'>
{{main}}
</font>
<center>
<h2><font color="orange"> Overview of Present Condition of the World</font></h2>
<table border="1" style="color: white;">
<th>Continent</th>
<th color="white">Total Case</th>
<th color="white">New Case</th>
<th bgcolor="red">Total Death</th>
<th color="white">New Death</th>
<th bgcolor="green">Total Recovered</th>
<th color="white">Active Cases</th>
<th color="white">Serious,Critical</th>
<th color="white">Total Cases/1M population</th>
{% for row in rows %}
<tr>
<td align="center">{{row[0]}}</td>
<td align="center">{{row[1]}}</td>
<td align="center">{{row[2]}}</td>
<td align="center" bgcolor="red">{{row[3]}}</td>
<td align="center">{{row[4]}}</td>
<td align="center" bgcolor="green">{{row[5]}}</td>
<td align="center">{{row[6]}}</td>
<td align="center">{{row[7]}}</td>
<td align="center">{{row[8]}}</td>
</tr>
{% endfor %}
</font>
</table>
</center>
</div>
</body>
</html>