fill in the blanks | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

fill in the blanks

create a valid email link displayed without an underline <a href= "____:abc@fgh.com"______=" text decoration:______">send</a>

26th Mar 2018, 4:06 PM
Sivaranjani panneer selvam
Sivaranjani panneer selvam - avatar
5 Answers
+ 6
<a href="mailto:abc@fgh.com" style="text-decoartion:none;"> </a>
26th Mar 2018, 4:20 PM
Baraa AB
Baraa AB - avatar
+ 5
<!DOCTYPE html> <html> <head> <title>Page Title</title> <style type="text/css">a {text-decoration: none}</style> </head> <body> <a href="mailto:abc@fgh.com">Send</a> </body> </html>
26th Mar 2018, 4:16 PM
Geo
Geo - avatar
+ 2
<a href="mailto:abc@fgh.com" style="text-decration:none;"> </a>
4th Apr 2018, 2:46 PM
Sivaranjani panneer selvam
Sivaranjani panneer selvam - avatar
+ 1
Tq guys.....
27th Mar 2018, 12:59 PM
Sivaranjani panneer selvam
Sivaranjani panneer selvam - avatar
0
<a href="mailto:abc@fgh.com" style="text-decration:none">send</a>
16th Apr 2018, 2:25 AM
Adhersh M Nair
Adhersh M Nair - avatar