21 lines
662 B
HTML
21 lines
662 B
HTML
<?xml version"1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
a:link { color: pink; text-decoration: none }
|
|
a:visited { color: blue; text-decoration: none}
|
|
a:hover {color: orange; text-decoration: underlined}
|
|
a:active {color: gray; text-decoration: none}
|
|
a:focus {color: green; text-decoration: underlined}
|
|
</style>
|
|
<title>Using CSS with Anchors</title>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
<a href="mailto:webmaster@happycodings.com">Send E-Mail</a>
|
|
</p>
|
|
</body>
|
|
</html>
|