HTML FRAMESET (<frameset>) Tag
0 2928
HTML FRAMESET <frameset> tag is used to contain the group of frames which can be controlled and styled as a unit. The <frameset> tag includes one or more <frame> tag.
Each <frame> tag have their own separate document. It specifies columns or rows that tells about how much space they will occupy in a frame.
The <frameset> tag is not supported in HTML5, so we can used <iframe> tag in HTML5.
Program:
<!DOCTYPE html>
<html>
<head>
<title>Frameset tag</title>
</head>
<frameset cols="20%,30%,50%">
<frame src="f1.html">
<frame src="f2.html">
<frame src="f3.html">
</frameset>
</html>
Output:
Share:
Comments
Waiting for your comments