This file is named 198ln02contact.htm
Often, authors want to provide a link back to the page previously visited. In our case, we want a link back to our 198ln02.htm file. Also, it would be convenient to the user if we positioned them back at the same point on the the previous page, where they came from. This way, as you're viewing this page, once you click a link to return, you will not have to scroll your way back through the long file to try to find where you were.
To accomplish this task, I added an anchor named "WhereWeWere" to our 198ln02.htm page. Now, we can link back to that position on that page with the following HTML code:
<A HREF="198ln02.htm#WhereWeWere">Click here to go back to same position</A>Which produced this link: Click here to go back to same position
Click it and see if you return to the 198ln02.htm page at the same position you left. Actually, I placed an anchor on the heading Linking to a Document with the name "WhereWeWere", so you will actually return to the page with this heading at the top of the browser window - maybe not exactly where you came from.
Feel free to click back and forth. Also, view the source code to completely understand the links.