Free Web space and hosting from freehomepage.com
Search the Web


HOME
BASIC TUTORIAL
What is Html?
Sample Web Page
Basic Tags
Character Entities
Html Links
Frames
Tables
Lists
Forms
Images
Backgrounds
APPENDIX
Html Tag List

Frames

A frame is used to display more than one html document in the same window. Each document is called a frame, and is independent of the other frames. The two disadvantages of frames are that the developer must keep track of more html documents and it is difficult to print the entire page.
The
frameset tag is used to define how to divide up the window into frames. It is <frameset>. The frameset divides the page into rows or columns. The values of the rows/columns decides how much space they occupy in the window.
The
frame tag (<frame>) is used to define what document goes in the frame.
<frameset>
<frame src=”frame_a.htm”>
<frame src=”frame_b.htm”>
</frameset>

To learn how to create html tables, click on “next”.

Much of what I learned to create this tutorial I found on www.w3schools.com.
Back to Top
Lewisville Middle School-2003