Removing underlining from links
Sponsored Links
Links 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
Links on the Internet are identified by underlined text. You can read about the pros and cons of removing underlines from links.
Comments, questions, feedback... whatever!
Page contents: Details on how to remove underlines from links on web pages using some clever style sheets rules.
Recent Articles
Recent Blog Posts
Popular Articles
- Hotmail Sign In page
- Create a Hotmail account - Instructions
- Create Gmail address
- Download and install Outlook Express
- Get your free Gmail address
- Outlook Express new version
- Create my own email address
- Browers for Windows list
- Get email address
- Color combinations for web sites and pages
- Create Yahoo ID
More web tips & tricks
- Outlook Express Help - tips & tricks (53)
- Windows Live Mail help and tips (36)
- Windows Mail help (25)
- Hotmail help and tips (42)
- Yahoo help & support (45)
- AOL email help (26)
- Gmail help and tips (36)
- Internet tips & tricks (12)
- Web Design tips & tricks (33)
- HTML, Javascript tips tricks (68)
- Web Promotion tips & tricks (8)
- Graphics tips & tricks (20)




