<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> The Page Title Goes Here </title>
</head>
<body>
<a href="tags.html">Back To Examples</a>
</body>
</html>
The above code is whats makes a clickable link from this page, to a page named tags.html.
You can use the target="" attribute to make the link to open in another window or frame than the one the link itself is placed in.
Here is an example of the code:
<a href="http://www.southerntwilight.com" target="_blank">
Predefined targets are:
_blank | loads the page into a new browser window. |
_self | loads the page into the current window. |
_parent | loads the page into the frame that is superior to the frame the hyperlink is in. |
_top | cancels all frames, and loads in full browser window. |
© Copyright 2001,2002 Southern Twilight All rights reserved.