Thursday, 23 February 2012

Decorating text


<html>
<head>
<style type="text/css">
h1 {text-decoration:underline;}
h2 {text-decoration:line-through;}
h3 {text-decoration:overline;}
h4 {text-decoration:blink;}
</style>
</head>

<body>
<h3>This is heading 1</h3>
<h2>This is heading 2</h2>
<h1>This is heading 3</h1>
<h4>This is heading 4</h4>
</body>

</html>

No comments:

Post a Comment