Posts Tagged ‘underline’

Removing an HTML Web Page Link Underline

Monday, July 14th, 2008

You can remove the underline of an individual HTML web page link, also known as a hyperlink, by adding the STYLE tag to your link HTML.

Example Code:

<A HREF=”http://www.yourdomain.com” STYLE=”TEXT-DECORATION: NONE”>Your Link</A>

HTML:how to double underline text with css style

Monday, June 30th, 2008

<html>
<head>
<title>Double Underlined Text Example</title>
<style type=”text/css”>
.double_underline {
border-bottom: 3px double;
}
</style>
</head>
<body>
<span class=”double_underline”>Double Underlined Text</span>
</body>
</html>