+ 5
fill in the blanks
create a valid email link displayed without an underline <a href= "____:abc@fgh.com"______=" text decoration:______">send</a>
5 ответов
+ 6
<a href="mailto:abc@fgh.com" style="text-decoartion:none;"> </a>
+ 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>
+ 2
<a href="mailto:abc@fgh.com" style="text-decration:none;"> </a>
+ 1
Tq guys.....
0
<a href="mailto:abc@fgh.com" style="text-decration:none">send</a>