x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
    a:link {
5
        font-size: 2em;
6
        color: orange;
7
        text-decoration: none;
8
    }
9
    a:hover {
10
        color: yellowgreen;
11
        text-decoration: underline;
12
    }
13
</style>
14
15
<p>Plenty of <a href="/html/templates/">HTML templates</a> if you need them.</p>