<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>页码的制作</title>
<style>
.page a{
display:inline-block;
border:1px solid #E8E8E8;
text-decoration:none;
margin:3px;
padding:3px 10px;
}
.page a:link,.page a:visited{
color:black;
}
.page a:hover,.page a:active{
background:red;
color:white;
}
</style>
</head>
<body>
<div class="page">
<a href="#">首页</a>
<a href="#"><</a>
<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">...</a>
<a href="#">></a>
<a href="#">末页</a>
</div>
</body>
</html>