+ 10
How to write a valid email link displayed without an underline in HTML?
HTML Help
6 odpowiedzi
+ 10
<a href="mailto:xyz@gmail.com"
style=
"text-decoration:none">
send</a>
What will you say about this one, is it correct?
+ 5
Thanks dear
You've really helped me.
+ 4
underline is the default style for links in browser engines.
You need to style the tag via css
Css code
text-decoration: none;
+ 2
<a href="URL" style="text-decoration:none">Underline will not be there now</a>
+ 1
Yes, like this
0
Frederick Buteh Babonjo
Always welcome