-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
30 lines (28 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page" id="pageone">
<div data-role="header" data-position="fixed">
<h1>欢迎登录天气预报网站</h1>
</div>
<div data-role="content" >
<h1 align="center" >北京天气:</h1>
<h2 align="center" >天气现象:多云</h2>
<h2 align="center" >风向:西南风</h2>
<h2 align="center" >风力:小于3级</h2>
<h2 align="center" >最高气温:10</h2>
<image src="/static/picture/rain.png"></image>
</div>
<div data-role="footer" data-position="fixed">
<h1>欢迎关注我们!</h1>
</div>
</div>
</body>
</html>