As the name says, remove underline from a hyperlink!
Do you ever seen a hyperlink that is not underlined?
Hmm?
Want to remove underline from the hyperlink, then this way.
Works with coding [HTML, HTM, PHP, ETC]
A hyperlink code look like this:-
<a href="www.google.com">google</a>
You just have to add this, style="text-decoration:none" in that tag, do like this:-
<a href="www.google.com" style="text-decoration:none">google</a>
And, now save it, all done, the underline is now removed from the hyperlink.
Category
Tips and Tricks