HTML
Design you web page by yourself
Links/Anchor
A link is a connection from one location in your web page to another location or to another page in your site or other site.
The HTML format for doing this is:
<a href="filename.html">text </a>
a for anchor link
href for "hypertext reference" and represent the path to the anchored file.
The href my point to a file that exist at the same directory of the currently displayed web page
<a href="page2.html">Click here to go to page two</a>
The href can also point to a file that is in another folder in relation to the document that contains the anchor. For example we may want to keep all of the pictures files in a separate folder called images. In this way we will keep things more easy and organized. That now