<frameset>: The <frameset> tag defines a frameset. The frameset element holds two or more frame elements. Each frame element holds a separate document. The frameset element states only how many columns or rows there will be in the frameset.
Example:
<html>
<frameset cols="25%,25%">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
</frameset>
</html> |
How the HTML code above looks in a browser:
Previous Next