|
January 1st, 2008
To my knowlede, iframes work pretty much like images, only they contain other web pages rather than just an image. So you could code an iframe with something as simple as:
<iframe src="the URL of the page you want to appear in the frame">
Of course, the iframe tag also has additional parameters. Only the src parameter is necessary to make it work, however you should also familiarize yourself with the use of the width, height and align properties in order to make the best use of your frame. You can read more about iframes here:
http://www.w3schools.com/tags/tag_iframe.asp
|