FRAMES TUTORIAL
Create the following 3 HTML documents in a separate folder, and test your creation by double-clicking on the index.
index.html
|
<html> <head><title>My First Frame Page</title></head> <frameset cols=”140, *”> <frame name=”links” src=”links.html”> <frame name=”main” src=”home.html”> </frameset> </html> |
links.html
|
<html> <head><title>Links</title></head> <body> <center><br><br> <a href=”home.html” target=”main”>Home</a><br><br> <a href=”http://babich.info/internet” target=”main”>Assignments</a> </center> </body> </html> |
home.html
|
<html> <head><title>Home Page</title></head> <body> <center><br><br> <b>Welcome to my Home Page!<br> This is my first frame page.<br> Click on the Assignments link on the left if you want to see the page where all my Internet assignments are posted.<br> Thank you for visiting!!!! </center> </body> </html> |