frameset

Support

Specifies the layout for a set of independent window regions. The frameSet element allows authors to group and order frame tags within a document. 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>