+ 2
Fill in the blanks to create a valid email link displayed without an underline...
<a href="_______: abc@def.com" _______ "text-decoration:_______"> Send </a>
2 odpowiedzi
+ 16
<a href="mailto:
abc@def.com"
style=
"text-decoration:none">
Send </a>
0
Thanks @Dev