<!DOCTYPE html>
<html>
<head>
<title>CSS Example</title>
<style>
body {
color:#000000;
background-color:#ffffff;
font-family:verdana, sans-serif;
font-size:12px;}
a.none {text-decoration:none; background-color:blue; color:white}
p.underline {text-decoration:underline;}
p.overline {text-decoration:overline;}
p.line-through {text-decoration:line-through;}
p.blink {text-decoration:blink;}
</style>
</head>
<body>
<h1>text-decoration Property</h1>
<p class="underline">This text should be underlined</p>
<br>
<p class="overline">This text should have a line over it</p>
<br>
<p class="line-through">This text should have a line through it</p>
<br>
<p class="blink">This text should be blinking (most browsers do not blink text)</p>
<br>
<a class="none" href=http://google.com> This is a URL that does not have underline</a>, but has background color
</body>
</html>