|
|
Removing underlining from linksLinks on web pages are underlined by default. However, if underlined links do not suit the design you have prepared for the web page, we can easily remove them by employing style sheets.
<STYLE>
<!--
A {text-decoration:none}
-->
</STYLE>
The entire code has to be placed inside the <HEAD> of the HTML document or can reside in an external style sheet (.css) file. There are a few more features that can change the look of links on a web page. Experiment with them. Here is a code that makes all links appear in bold Verdana font, size 10 in orange color.
<STYLE>
<!--
A {text-decoration:none;
font-family:Verdana;
font-weight:bold;
font-size:10;
color:#FF9900}
-->
</STYLE>
Important
Page contents: Details on how to remove underlines from links on web pages using some clever style sheets rules.
Page URL: http://www.webdevelopersnotes.com/tips/html/ removing_underlining_from_links.php3
|
|