<html>
<head>
<title>CodeAve.com(Base Reference)</title>
<base href="http://www.codeave.com">
</head>
<!-- The base href command will set a location from
which all
relative links will be driven from. -->
<body bgcolor="#FFFFFF">
Hyperlinks
<p>
<a href=html>CodeAve.com
- HTML</a>
<!-- The full url http://www.codeave.com/html
will be created
due to the base href. Place the mouse cursor over the link
and the full address will appear in the lower left of the browser
Without the base href this link would
be directed to the relative location of the page
(In this case http://www.codeave.com/html/html
which does not exist) -->
<p>
Image
<p>
<img src=codeavelogo.gif>
<!-- The full url
http://www.codeave.com/codeavelogo.gif
will be created due to the base href.
Without the base href this image tag would
be directed to the relative location of the page
(In this case http://www.codeave.com/html/codeavelogo.gif
which does not exist) -->
</body>
</html>
|