how to set an email address at the end of an html document
Answers
Answered by
1
Hey mate ..
=======
▪In order to set an e-mail address at the end of an HTML document , we need to use <a href = ''mailto: [email protected]>
For example :-
<html>
<head>
<title> ...</title>
<body>
<a href = "mailto:[email protected]">Hello </a>
</body>
</html>
Hope it helps u to some extent !!
=======
▪In order to set an e-mail address at the end of an HTML document , we need to use <a href = ''mailto: [email protected]>
For example :-
<html>
<head>
<title> ...</title>
<body>
<a href = "mailto:[email protected]">Hello </a>
</body>
</html>
Hope it helps u to some extent !!
Answered by
2
<html>
<body>
<footer>
<a href = "mailto:[email protected]"> Click here to send a message </a>
</footer>
</body>
</html>
<!-- Hope this helps -- >
<body>
<footer>
<a href = "mailto:[email protected]"> Click here to send a message </a>
</footer>
</body>
</html>
<!-- Hope this helps -- >
Similar questions