x
1
2
<html>
3
<head>
4
<style>
5
/* unvisited link */
6
a:link
7
{
8
color: red;
9
}
10
11
/* visited link */
12
a:visited
13
{
14
color: gold;
15
}
16
17
/* mouse over link */
18
a:hover
19
{
20
color: pink;
21
}
22
23
/* selected link */
24
a:active
25
{
26
color: blue;
27
}
28
</style>
29
</head>
30
<body>
31
32
<h1>Link style with mouse engagement</h1>
33
<p>
34
<a href="https://www.closetag.com/access" target="_blank">This is a link</a></b>
35
</p>
36
37
</body>
38
</html>