x
 
<!DOCTYPE html>
<html>
<head>
<style>
/* 未访问的链接 */
a:link {
  color: green;
}
/* 已访问的链接 */
a:visited {
  color: green;
}
/* 鼠标悬停链接 */
a:hover {
  color: red;
}
/* 选中的链接 */
a:active {
  color: yellow;
} 
</style>
</head>
<body>
<p>将鼠标悬停并点击链接:<a href="https://www.w3school.com.cn">W3School</a></p>
</body>
</html>