用CSS
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
a:link {color: green} /*未被访问的链接*/
a:visited {color: yellow} /* 已被访问过的链接*/
a:hover {color:black} /* 鼠标悬浮在上的链接*/
a:active {color: blue} /* 鼠标点中激活链接*/
</style>
</head>
<body>
<a href="#">学校概况</a>
</body>
</html>