Remove the underline of a link

Explanation

Specify none for the text-decoration property of CSS to remove the underline of a link.

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
<style type="text/css"><!--
a {
text-decoration:none;
}
--></style>
</head>
<body>
<h1>Sample</h1>
<p>
The link below isn't underlined.<br>
<a href="http://www.openspc2.org" target="opsp">Back to Top Page of OpenSpace</a>
</p>
</body>
</html>