Site hosted by Angelfire.com: Build your free website today!

HTML Basics: When Saving an HTML File

  • Do not use any spaces
  • Use only characters that are alphabetic or numeric
  • FILE NAMES SHOULD BE IN LOWER CASE
  • Main page should be called: index.html
  • Put the file extension.html after each file name!
  • i.e index.html

Using Images Files in HTML:
  • File names should be in LOWER CASE!
  • Files names should be alpha-numeric only!
  • Files names should not contain any spaces!
  • FILE NAMES SHOULD BE IN THE GIF OR JPEG FORMAT!
  • File names should have a name and the extension, ie: cartoon.gif

To Create a Simple Frameset:
<FRAME>
<FRAMESET ROW>Height and Width goes here</FRAMESET>
<FRAME NAME=name of frame SRC="name of page that you want to display.html">
<FRAME NAME=name of frame SRC="name of page that you want to display.html">
<FRAME NAME=name of frame SRC="name of page that you want to display.html">
(ETC.)

</FRAMESET>

To Create Frames in Columns:
<FRAME>
<FRAMESET COLS=a, b>(Where a and b (and any others) represent the width of corresponding column, as a percentage, number of pixels, or variable(*).

<FRAME NAME="name" (where name is reference for the frame) SRC="name of page that you want to display.html">

<FRAME NAME="name" (where name is reference for the frame) SRC="name of page that you want to display.html">

<FRAME NAME="name" (where name is reference for the frame) SRC="name of page that you want to display.html">

<FRAME NAME="name " (where name is reference for the frame) SRC="name of page that you want to display.html">

(ETC.)

</FRAMESET>

To Create Frames in Rows:
<FRAME>
<FRAMESET ROW=a, b>(Where a and b (and any others) represent the width of corresponding row.

FOR A ROW WITH A SINGLE FRAME:

<FRAME NAME="name" SRC="filename.html">

FOR THE SECOND ROW WHICH IS DIVIDED INTO COLUMNS

<FRAMESET COLS="a, b">
</FRAMESET>