用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>