Link to Another Page

To make a link to another HTML document, follow this convention.
If the target document is in the same directory as your current document,

<a href="another_page.html"> another page</a>

For instance,

<a href="index.html"> BACK TO TUTORIAL</a>

will produce a clickable linke which looks like below:

BACK TO TUTORIAL

Likewise, if it is in the sub-directory named "sub" from your current document,

<a href="sub/another_page.html"> another page</a>


If it is in another server, then you should include "http://...." as in,

<a href="http://cat2.mit.edu/arc/4.203/index.html">4.203 HOME</a>

This will produce a clickable link which looks like below:

4.203 HOME