Last Updated on April 26, 2023 by Roshan Parihar
HTML frameset tag is used to load multiple separate HTML document inside a single document.
Syntax
1 2 3 4 |
<frameset cols="in percentage"> <frame src="enter source location here"> ... </frameset> |
1 2 3 4 5 |
<frameset cols="25%,*,25%"> <frame src="frame_a.htm"> <frame src="frame_b.htm"> <frame src="frame_c.htm"> </frameset> |
Output
Resources and References of HTML frameset tag
1. W3C Specification.
2. HTML living standard
3. W3C project using Github