x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<style>
5
  p:first-child {
6
    font-size: 1.5em;
7
  }
8
  a {
9
    color: darkorange;
10
    text-decoration: none;
11
  }
12
  a:visited {
13
    color: gray;
14
  }
15
  a:hover {
16
    color: green;
17
    border-bottom: 1px solid currentColor;
18
  }
19
</style>
20
21
<p>Here's a link to the <a href="https://www.quackit.com/">Quackit homepage</a>.</p>
22
23
<hr>
24
<p>More info: <a href="/css/css_hyperlinks.cfm">CSS Hyperlinks</a>.</p>