Lesson 4: Linking Tags
(Linking to Email)

The "mailto" protocol is compatible with most browsers and is the easiest way to send Email from a Web site. The "mailto" protocol only works as intended when client Email software is set up and defined for the user's computer.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Email WebYoda</title>
</head>

<body bgcolor="#bdbdbd" text="black" link="blue" vlink="purple">
<br />
<b>
<center>
<a href="mailto:comments@webyoda.com">Email</a> WebYoda.
</center>
</b>
</body>
</html>