How to link something without an underline? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to link something without an underline?

Like---<a href="http://www.learnmore.com">Learn More</a>

9th Aug 2017, 5:22 PM
Ali Murtaza
Ali Murtaza - avatar
3 Answers
+ 11
Use CSS to remove any type of text decoration from your link. a { text-decoration: none; }
9th Aug 2017, 5:35 PM
Dev
Dev - avatar
+ 2
<a style="text-decoration: none;" href="your link">
9th Aug 2017, 5:36 PM
Martin Ed
Martin Ed - avatar
+ 2
thank you guys!
9th Aug 2017, 5:40 PM
Ali Murtaza
Ali Murtaza - avatar