HTML - <frameset>
<frameset>
is an HTML element which is used to contain <frame>
elements.
Example
HTML
Copy Code
<frameset cols="50%,50%"> <frame src="https://developer.mozilla.org/en/HTML/Element/frameset" /> <frame src="https://developer.mozilla.org/en/HTML/Element/frame" /> </frameset>
Description
<frameset>
is an HTML element which is used to contain <frame>
elements.
Note: Because the use of frames is now discouraged in favor of using
<iframe>
, this element is not typically used by modern web sites.See Also
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/html/element/frameset