html remove link underline, how to remove html link underline, tips, guide html remove link underline
(Website Helper) remove link underline Number of Visitors: Site Map

html remove link underline



Website Design
Website Promotion
Graphic Design
Programming
Free Software
Computer Tips
Discount Stores
This site provides users with the information about html remove link underline, how to remove html link underline, tips, guide, and more.

If you think that this site is helpful, please recommend your friends to visit our site.



As a website designer, you should know more designing tips and tricks. How to remove hyerlink underline is something that you should know because some people like the different styles of their website designed. The other reason that people want to have a link underline removed, it may be that they want a link in their page, but they do not want people to click it for the purpose of SEO.

To remove a link underline is quite simple. You just need to add the following code

style="text-decoration: none"

to your <a> link code. The following is an example.

<A href="http://www.edusoftmax.com" style="text-decoration: none">www.edusoftmax.com</A>

For the underline of all the links used in your web page to be removed, you can add CSS to the header as follows:

<style type="text/css">

a 
{
text-decoration: none;
}

</style>
Please note that although the above example help you remove the underline within a hyperlink and make the web page unique, you should use this code with caution to ensure that you do not confuse your visitors.

(Website Helper) remove link underline (c) EduSoftMax - www.edusoftmax.com