Absolute vs. Relative Links -- this will be clearer
when you start making your own website.
Absolute:
<
a href=”http://www.asite.com/page.html”>
Relative:
<
a href=”somepage.html”>
<
a href=”pagesfolder/somepage.html”>
<
a href=”./somepage.html”>
<
a href=”../somepage.html”>
|