-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (32 loc) · 1.27 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>木匠天气</title>
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta name="author" content="mujiang.info">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<link type="text/css" rel="styleSheet" href="./css/reset.css">
<link type="text/css" rel="styleSheet" href="./css/main.css">
</head>
<body>
<header id="weather" class="clearfix">
<div class="icon"></div>
<dl>
<div class="temp"></div>
<dt class="name"></span></dt>
<dt class="humidity"></span></dt>
<dt class="apparent"></dt>
<dt class="wind"></dt>
<dt class="time"></dt>
</dl>
</header>
<canvas id="forecast" width=320 height=200> </canvas>
<script src="./js/zepto.min.js"></script>
<script src="./js/chart.js"></script>
<script src="./js/detailedWeather.js"></script>
<script src="./js/main.js"></script>
</body>
</html>