-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.html
44 lines (43 loc) · 1.2 KB
/
weather.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Forecast</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Forecast enables you to get up-to-date weather information for multiple cities.">
<meta name="author" content="summer222522">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<style type="text/css">
#placeholder{
margin: 20px;
}
</style>
</head>
<body>
<div class="container">
<div id="placeholder" style="width:600px;height:300px;"></div>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>City</th>
<th>日期</th>
<th>今日天气</th>
<th>最低温度</th>
<th>最高温度</th>
<th>风力</th>
<th>风速</th>
<th>能见度</th>
<th>湿度</th>
<th>气压</th>
<th>与杭州的天气相似度</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/jquery.flot.js"></script>
<script src="js/script.js"></script>
</body>
</html>