Introduction to HTML - Part 7 (Links)

Links to other documents are created using the anchor tag:
<A HREF="http://www.yahoo.com"> Go to yahoo </A> <br> <A HREF="html8.html"> The next slide </A>
Example:

Go to yahoo
The next slide

There is also a way to create links within the same document. It works like this:

<A HREF="#foo"> Jump down to foo </A> <br> ... ... ... <A NAME=foo></A> This is where foo starts....

Next