Search This Blog

Friday, August 14, 2009

Hypertext Link Blogger

Whenever you add any hypertext link to your blog post, you will see that the link is underlined. However some people don't like that the link is underlined and want to remove the underline.

This is possible by adding a small code in the link. Check the two links html given below. The first link html is the normal link which is underlined. However, the second link html would not result in underline.




<a href="URL" > </a>

<a href="URL" style="text-decoration: none;" > </a>



As we can see in the code shown above, we have added just the following code.

style="text-decoration: none;"


Its just a simple thing to do which will hardly take your time.