0
By using<frameset> tag how to divide a page into 4 equal parts
3 Answers
+ 6
Combine rows and columns attributes . Frameset is really old, frames aren't supported in HTML5 and didn't work for me on SoloLearn.
https://www.w3schools.com/tags/att_frame_frameborder.asp
https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_frame_rows
Original question:
https://www.sololearn.com/Discuss/638959/?ref=app
+ 5
Not Supported in HTML5
0
<html>
<frameset rows="50%,50%" cols="25%,25%">
<frame name="A">
<frame name="B">
<frame name="C">
<frame name="D">
</frameset>
</html>