Lesson 4: Linking Tags
(Linking to a Web Site)

To create a link to a Web site, you use a URL with the HTTP protocol.

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

<body bgcolor="#bdbdbd" text="black" link="blue" vlink="purple">
<br />
<b>
<center>
<a href="http://www.webyoda.com">Visit</a> WebYoda.

</center>
</b>
</body>
</html>