-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.41 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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
<!--<link href="src/css/reset.css" rel="stylesheet" type="text/css">-->
<link href="src/css/index.css" rel="stylesheet" type="text/css">
<link href="src/css/common.css" rel="stylesheet" type="text/css">
<link href="src/css/fontsstyle.css" rel="stylesheet" type="text/css">
<script src="dep/director.min.js" type="text/javascript"></script>
<title>首页</title>
</head>
<body>
<div class="header">
<a href="#list"><span class="icon-list"></span></a><span class="title">首页</span>
<a href="#share"><span class="icon-share2"></span></a>
</div>
<div class="index-main" class="top50">
<div class="content">
<p>收入:<span id="income">1000</span>元</p>
<p>支出:<span id="expense">500</span>元</p>
<p>本月总计:<span id="total">500</span>元</p>
<p class="slogan">———— I choose to be happy ————</p>
</div>
</div>
<img src="src/css/img/home_life.jpg" id="img">
<a class="edit-btn" href="edit.html">记一笔</a>
</body>
<script src='dep/sea.js'></script>
<script>
seajs.config({
base: './src/',
alias: {
'zepto': '../dep/zepto.js'
}
})
seajs.use('js/index.js');
</script>
</html>