<iframe></iframe>
name   width   height   src   align

The <iframe> tag allow you to create a frame that can appear anywhere within a standard html document.

<iframe name="">

   Description
   The name attribute allows you to name the frame. Text placed within the frame tags renders as regular text in browsers that do not support the <iframe> tag, and is usually used to tell the viewer that the page has floating frames.
Code
   <iframe name="NAME OF FRAME"></iframe>

<iframe width="">

   Description
   The width attribute allows you to define the width of the frame, as either a pixel value or as a percentage of the browser window.
Code
   <iframe ATTRIB1="40%"></iframe>

<iframe height="">

   Description
   The height attribute allows you to define the height of the frame, as either a pixel value or as a percentage of the browser window.
Code
   <iframe height="40%"></iframe>

<iframe src="">

   Description
   The src attribute is used to define the source html document for the floating frame.
Code
   <iframe src="FILENAME.htm"></iframe>

<iframe align="">

   Description
   The align tag allow you to set the justification for the frame within the core html page.
Code
   <iframe align="center"></iframe>
/body>