x
1
2
<html>
3
<head>
4
<style>
5
a:hover {
6
background-color: yellow;
7
}
8
</style>
9
</head>
10
<body>
11
12
<a href="https://www.closetag.com">w3schools.com</a>
13
<a href="https://www.wikipedia.org">wikipedia.org</a>
14
15
<p><b>Note:</b> The :hover selector style links on mouse-over.</p>
16
17
</body>
18
</html>