How to write a valid email link displayed without an underline in HTML? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

How to write a valid email link displayed without an underline in HTML?

HTML Help

4th Jun 2020, 7:13 PM
Ambassador Viva 🇸🇱
Ambassador Viva 🇸🇱 - avatar
6 Answers
+ 10
<a href="mailto:[email protected]" style= "text-decoration:none"> send</a> What will you say about this one, is it correct?
4th Jun 2020, 7:31 PM
Ambassador Viva 🇸🇱
Ambassador Viva 🇸🇱 - avatar
+ 5
Thanks dear You've really helped me.
4th Jun 2020, 7:36 PM
Frederick Buteh Babonjo
+ 4
underline is the default style for links in browser engines. You need to style the tag via css Css code text-decoration: none;
4th Jun 2020, 7:18 PM
XnDesigns
XnDesigns - avatar
+ 2
<a href="URL" style="text-decoration:none">Underline will not be there now</a>
4th Jun 2020, 7:20 PM
Hardik Sharma
Hardik Sharma - avatar
+ 1
Yes, like this
4th Jun 2020, 7:32 PM
Hardik Sharma
Hardik Sharma - avatar
0
4th Jun 2020, 7:38 PM
Hardik Sharma
Hardik Sharma - avatar