比较实用网站后台菜单

本人觉得的这样的后台菜单比较好看兼实用性高!不知道大家觉得怎样?

<%@ page language="java" pageEncoding="UTF-8"%> 
<% 
String path = request.getContextPath(); 
String basePath = request.getScheme() + "://" 
+ request.getServerName() + ":" + request.getServerPort() 
+ path + "/"; 
%> 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
 
 
 
menu 
<!-- 
body { 
font-size: 12px; 
margin: 0; 
background-color: #6699CC; 
border-left: 7px solid #258; 
border-right: 2px solid #258; 
} 

#menu dl { 
margin: 0 auto; 
padding: 0 0 10px 0; 
width: 150px; 
background: #69c; 
} 

#menu dt { 
margin: 0; 
padding: 10px; 
background: #69c; 
color: #fff; 
font-size: 1.4em; 
font-weight: bold; 
border-bottom: 1px solid #fff; 
} 

#menu dd { 
margin: 0; 
padding: 0; 
background: #47a; 
color: #fff; 
font-size: 1em; 
border-bottom: 1px solid #fff; 
} 
#gallery a,#gallery a:visited { 
display: block; 
padding: 5px 5px 5px 20px; 
width: 150px; 
background: #47a; 
color: #fff; 
text-decoration: none; 
} 

#gallery a:hover { 
background: #258; 
color: #9cf; 
} 
</style> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head> 

<body> 
<div id="menu"> 
<dl id="gallery"> 
<dt> 
商城管理 
</dt> 
<dd> 
<a href="#" target="mainFrame"><img src="images/list.gif border="0">  发布新闻</a> 
</dd> 
<dd> 
<a href="adminAllNews.action" target="mainFrame"><img src="images/list.gif" border="0">  新闻信息</a> 
</dd> 
<dd> 
<a href="#" target="mainFrame"><img src="images/list.gif" border="0">  新书上架</a> 
</dd> 
<dd> 
<a href="#" target="mainFrame"><img src="images/list.gif" border="0">  图书信息</a> 
</dd> 
<dd> 
<a href="#" target="mainFrame"><img src="images/list.gif" border="0">  新增会员</a> 
</dd> 
<dd> 
<a href="#" target="mainFrame"><img src="images/list.gif" border="0">  会员信息</a> 
</dd> 
<dd> 
<a href="#" target="mainFrame"><img src="images/list.gif" border="0"> 订单信息</a> 
</dd> 
<dd> 
<a href="#" target="mainFrame"><img src="images/list.gif" border="0"> 留言管理</a> 
</dd> 
<dd> 
<a href="#" target="mainFrame"><img src="images/list.gif" border="0">  修改密码</a> 
</dd> 
<dd> 
<a href="#" target="top"><img src="images/list.gif" border="0">  退出系统</a> 
</dd> 
</dl> 
</div> 
</body> 
</html>

你可能感兴趣的:(html,XHTML,ext)