<html>  
<head>   
<style type="text/css">
a:visited {}
a:visited {color:#3498DB;}  /* 已访问链接 */
a:link {color:#3498DB;}      /* 未访问链接*/
a:hover {color:#0056B3;}  /* 鼠标移动到链接上 */
a:active {color:#0056B3;}  /* 鼠标点击时 */
</style>
<title>test css</title>  
</head>  
<body>  
<a href="#">HTML中文网</a>
</body>   
</html>