<class home>  <html part II>   <back   next>

html continued

linking to Email:

You can link to all sorts of files, you just need to know the URL.
You can also create an email link to open an email window for contacting someone from your website.
Use the mailto: prefix and the email name.
<a href="mailto:larissabank@hotmail.com">My email</a>


example>>>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<title>Pony Pony Pony</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<a href="mailto:larissabank@hotmail.com">My email</a>

</body>
</html>