+ 1
How to link something without an underline?
Like---<a href="http://www.learnmore.com">Learn More</a>
3 Antworten
+ 11
Use CSS to remove any type of text decoration from your link.
a {
text-decoration: none;
}
+ 2
<a style="text-decoration: none;" href="your link">
+ 2
thank you guys!