map.html
1.42 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Pay-map</title>
<style type="text/css" media="screen">
* {margin: 0; padding: 0}
li >a,
header,
section,
footer {
display: block;
}
header {
background-color: #eee;
color: #333;
text-align: center;
padding: 20px;
border-bottom: 1px solid #ddd;
margin-bottom: 10px;
}
footer {
position: fixed;
bottom: 0;
background-color: #333;
color: #fff;
width: 90%;
text-align: right;
padding: 10px 5%;
}
ul {
margin-bottom: 100px;
}
li {
//border: 1px solid #23ac38;
border: 1px solid #ddd;
list-style: none;
text-align: center;
margin: 0 25% 10px 25%;
}
li:hover {
border-color: #23ac38;
background-color: #f9f9f9;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
color: #23ac38;
}
li >a {
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>pay-map</h1>
<p>Pay 新增修改静态页面链接</p>
</header>
<section>
<ul>
<li><a href="html/index.html">首页</a></li>
<li><a href="html/payCard.html">充值(修改)</a></li>
<li><a href="html/withdrew.html">提现(修改)</a></li>
<li><a href="html/payAddCard.html">添加银行卡(修改)</a></li>
<li><a href="html/account.html">我的银行卡(修改)</a></li>
</ul>
</section>
<footer>
查看html结构 建议在 ctrl+u 源码查看方式下,避免动态生成的html结构。
</footer>
</body>
</html>