
To make an internal connection or as it is called in webpage terms link to one of your files, you use the tag <A HREF=?> to open the link. You use the tag </A> to close this tag.
You can use these tags to create a home or back or next button to one of your other Web Pages.
Lets call your second page index2.html.
This is a sample code of how to do that.
<A HREF="index2.html">On To Next Page</A>
On your webpage you would see the words On To Next Page like this: On To Next Page
<HTML> <HEAD> <TITLE> This is my first web page </TITLE> </HEAD> <BODY><H1><U><CENTER>About me</CENTER></U></H1> <BR><H3> I am a student in the 8th grade. I have one sister. I like eating plantains and yucca. I like playing sports and video games. </H3> <H3><B> <UL> <LI>I am tall. <LI>I have curly hair. <LI>I have hazel colored eyes. </UL></B></H3> <BR><BR><BR>Right after this line, students are to type the following:The following links are my favorite websites:<OL><LI> <A HREF="http://www.ny1.com"> New York 1 Webpage </A><LI> <A HREF="http://www.sony.com"> Sony's Website </A></OL><BR><BR><BR>What this will do is insert 2 links in a numbered list and will then skip 3 lines.<H7><CENTER><I>Last revised by Anthony Salcedo.</I></CENTER></H7> </BODY> </HTML> Click on this example link to see the webpage.
<HTML> <HEAD> <TITLE> This is my second web page </TITLE> </HEAD> <BODY><H1><U><CENTER>My Picture Page</CENTER></U></H1> <BR><H3> Here I will show you a couple of images on this page. </H3> <IMG SRC="2%20Cars%20-%20The%20Fast%20And%20The%20Furious-Supra%20&%20Mazda%20Rx70.jpg" width="392" height="293"><p> <IMG SRC="Dodge%20-%20Viper%20-%20Dodge%20-%20Viper%20-%20Dodge%20-%20Viper%20-%20Wallpapers%20-%20Sports%20Cars%20-%20Vipe.jpg" width="398" height="298"><BR><BR> <IMG SRC="Mixed%20cars%20-%20Mixed%20-%20Good%20Cars%20(Ferrari%20355%20F1,%20Acura%20NSX,%20Porsche%20911,%20Chevrolet%20Co.jpg" width="640" height="424"><BR> </p> <BR><BR><BR>
<A HREF="example1.htm">Return to index page</A> <BR><BR><BR> <H7><CENTER><I>Last revised by Anthony Salcedo.</I></CENTER></H7> </BODY> </HTML>
Click on this example link to see the webpage Page2.htm.
<OL><LI> <A HREF="http://www.ny1.com"> New York 1 Webpage </A><LI> <A HREF="http://www.sony.com"> Sony's Website </A><LI> <A HREF="page2.htm"> My Picture Page </A></OL>Click on this example link to see the final index webpage.