<iframe> and </iframe>
PURPOSE: To create a page with a inline frame which is basically another
html document which is embedded in the current document as a scrollable frame.
Below is a basic html document. The referenced html tag is in RED. All tags must have a start and a end tag. Most end tags have a / before the tags name, however there are a few that are done differently. The tags that end differently will be noted and highlighted. The order of the start and end tags is also very important to proper display of your page in a web browser.
<html>
<head>
<title>
IFrame
</title>
</head>
<body>
<iframe src="doc33a.html" align="center">
</iframe>
</body>
</html>
Click HERE to view an example.
© Copyright 2001,2002 Southern Twilight All rights reserved.