<Frameset rows="50%,50%">
<Frame src="frame1src.html" frameborder="0">
<Frame src="frame2src.html" frameborder="0">
</Frameset>
We can also make the frameset borders invisible by using border attribute of <frameset> tag. <Frameset rows="50%,50%" border="0">
<Frame src="frame1src.html" frameborder="0">
<Frame src="frame2src.html" frameborder="0">
</Frameset>
Note: frameborder attribute can also be specified with in the <frameset> tag to avoid mentioning for every frame within a frameset. <Frameset rows="50%,50%" border="0" frameborder="0"> -- This makes border of all frames with in the frameset invisible.
<Frame src="frame1src.html">
<Frame src="frame2src.html">
</Frameset>
HTML
Author & Instructor at plus2net
I write and maintain practical tutorials on Python, PHP, SQL, JavaScript, HTML, jQuery, and web development at plus2net. The tutorials focus on clear explanations, working examples, and code that readers can test and adapt while learning.