map.html
1.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Logistic Html5 Map</title>
</head>
<style type="text/css">
body {
background-color: #f7f7f7;
width: 100%;
padding: 0;
margin: 0;
}
header {
background-color: #1c69a3;
padding: 2%;
font: 3em/1 'Microsoft YaHei';
color: #fff;
text-align: center;
}
footer {
padding: 3% 0;
color: #333;
font: 2em/1.5 'Microsoft YaHei';
width: 100%;
position: fixed;
bottom: 0;
background-color: #fff;
text-align: center;
}
section {
padding: 10px 5%;
}
article {
text-align: center;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
padding: 10px;
margin: 2em 0;
}
article a {
font: 1.6em/1 'Microsoft YaHei';
display: block;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
color: #71bcde;
}
</style>
<body>
<header>
物流 主要流程入口(提示帮助)
</header>
<section>
<article>
<a href="./html/index.html">首页</a>
</article>
<article>
<a href="./html/order_setting.html">接单</a>
</article>
<article>
<a href="./html/shipping_list.html">货运单</a>
</article>
<article>
<a href="./html/login.html">登录注册</a>
</article>
<article>
<a href="./html/userCenter.html">用户中心</a>
</article>
</section>
<footer>
该文件中包含内容为物流移动端静态页面,主要流程的入口链接。<br/>
建议在浏览器响应模式下查看所有链接。
</footer>
</body>
</html>