You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style type="text/css">
|
|
body{background: url(D:/SQL/ky1.jpg) no-repeat center 0;
|
|
background-size: 100%};
|
|
font{color="darkgray"};
|
|
tr{height:60px}
|
|
</style>
|
|
<title>江汉区</title>
|
|
</head>
|
|
<body>
|
|
<body style="background-color:lightgoldenrodyellow">
|
|
<div align="center">
|
|
<h1>江汉区</h1>
|
|
<table width="800px" border="1" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td>日期</td>
|
|
<td>确诊</td>
|
|
<td>疑似</td>
|
|
<td>死亡</td>
|
|
</tr>
|
|
{% for jh in jhlist %}
|
|
<tr>
|
|
<td>{{ jh. time}}</td>
|
|
<td>{{ jh.confirmed }}</td>
|
|
<td>{{ jh. suspected}}</td>
|
|
<td>{{ jh. death}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<br>
|
|
<br>
|
|
下辖医院:
|
|
<br>
|
|
<style>
|
|
.button1 {
|
|
-webkit-transition-duration: 0.4s;
|
|
transition-duration: 0.4s;
|
|
padding: 16px 32px;
|
|
text-align: center;
|
|
background-color: wheat;
|
|
color: black;
|
|
border: 2px solid #4CAF50;
|
|
border-radius:5px;
|
|
}
|
|
.button1:hover {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
}
|
|
</style>
|
|
<a href="xiehe"><button class="button1" >武汉协和医院</button></a>
|
|
|
|
|
|
<br>
|
|
<a href="/main page">返回主页</a>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |