linking:
•linking is
what enables you to navigate from one page on the web to the next and within
pages.
•A link has three parts:
destination: where am I going, to what page?
label: what am I called, what do you click on?
target: where will the the place I am going be
displayed, in this window, or in another window, in another Frame?
•To go to another page use the <a href> tag, this is the <a>,
anchor tag with the attribute of HREF (HYPERTEXT REFERENCE).
•This tag needs a closing tag.
•<a href="wheregoing.html">word
on page or image</a>.
note: If you don't specify a target. The link will
open in the same location.
note: if you use an image as your "label"
then you can choose to turn the border off by putting border=0 in the image
tag:
<img src="image.gif" border=0 />
<!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="http://www.pony.com">pony
site</a>
<p>
<a href="pony.html"><img src="pony.gif" /></a>
</body>
</html>