1. Define an HTML page layout using frame tag.
<!-- First Frame Code(save this file as frame1.html) -->
<html>
<body>
This is the 1st frame html document.
</body>
</html>
<!-- End of file -->
<!-- Second Frame Code(save this file as frame2.html) -->
<html>
<body>
This is the 2nd frame html document.
</body>
</html>
<!-- End of file -->
<!-- Now, make a final file save this file as frame.html -->
<html>
<frameset cols="250,*">
<frame src="1frame.html" name="menu">
<frame src="2frame.html" name="main">
</frameset>
</html>
<!-- End of file -->
Output
No Output Available