frame

Support

Specifies a nameable window region.

The frame element allows authors to insert more than one HTML document into a browser window. It must be within a frameset element. Using frames can prevent search engines from finding the contents within pages, so it is not recommended to use the frameset and frame elements (because of the indexing mechanism of search robots).

Example

<frameset rows="110,*" cols="*" border="10px">
<frame src="topFrame.htm" name="topFrame" scrolling="No"/>
<frame src="mainFrame.htm" name="mainFrame"/>
</frameset>