-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
47 lines (47 loc) · 1.44 KB
/
main.html
File metadata and controls
47 lines (47 loc) · 1.44 KB
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
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<link rel="stylesheet" href="css/main.css" />
<script type="text/javascript" src="js/jquery-1.8.3.min.js" ></script>
<script type="text/javascript" src="js/fastclick.min.js" ></script>
</head>
<body>
<div id="web-view">
<div id="header">
<span>宁波理工二手街</span>
</div>
<div id="main" >
<iframe src="homePage.html" id="iframepage" ></iframe>
</div>
<div id="footer">
<!--<span>首页/分类/发布/我的</span>-->
<form name="menu">
<input type="radio" name="footers" id="footer_home" checked="true" />
<a name="home" id="home">
<p class="home"></p>
<center>首页</center>
</a>
<input type="radio" name="footers" id="footer_category" />
<a name="category">
<p class="category"></p>
<center>分类</center>
</a>
<input type="radio" name="footers" id="footer_release" />
<a name="release">
<p class="release"></p>
<center>发布</center>
</a>
<input type="radio" name="footers" id="footer_mine" />
<a name="mine">
<p class="mine"></p>
<center>我的</center>
</a>
</form>
</div>
</div>
<script type="text/javascript" src="js/main.js" ></script>
</body>
</html>