XHTML and CSS Tutorial - 7 - Email Links and Tool Tips

<!doctype html>
<html>
<head>
<title> This is the Title</title>
</head>
<body>
<a href="mailto:thileban21@gmail.com">Email Thileban</a>
</body>
</html>

<!doctype html>
<html>
<head>
<title> This is the Title</title>
</head>
<body>
<a href="http://google.com">Google</a>
</body>
</html>

<!doctype html>
<html>
<head>
<title> This is the Title</title>
</head>
<body>
<a href="http://google.com" title="Awesome Search Engine">Google</a>(tool tip)
</body>
</html>

Comments