Set 88 Practical Question

⭐ Q38 – HTML Page With 3 Frames (Top, Left, Right)

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>3 Frames</title></head>
<frameset rows="25%,75%">
<frame src="top.html">
<frameset cols="30%,70%">
<frame src="left.html">
<frame src="right.html">
</frameset>
</frameset>
</html>

Write Your HTML / JavaScript Code