Programming Examples
Html code to develop a web page having two frames that divide the page into two equal rows and divide the first row into equal columns
Write HTML code to develop a web page having two frames that divide the page into two equal rows and divide the first row into equal columns. Fill each of the different background color.
Solution
<!DOCTYPE HTML>
<html>
<head>
</head>
<frameset rows="50%,50%">
<frameset cols="50%,50%">
<frame src="" style="background:red"></frame>
<frame src="" style="background:green"></frame>
</frameset>
<frame src="" style="background:orange"></frame>
</frameset>
</html>
Output/ Explanation: