Removing underline from a Hyperlink
Sick of seeing a blue hyperlink? Or are you just sick of having that line under your hyperlink? Well, it’s easy to get rid of. You can either inline style the code or you can place it in your css. If you inline it into your code you would add style=”text-decoration:none” to your a href.
For Example:
<a style=”text-decoration: none” href=”home.jpg”>text</a>
Which would give you something that looks like this:
If you want to change the color of this you would just have to add a “color: #fff” to your style tag or in your css where you put your text-decoration. An example of an inline style would be:
<a style=”text-decoration: none; color: green” href=”home.jpg”>
text</a>
text</a>
This would give you:


Leave a Reply