write a html code to divide browser window in three horizontal section and divide section 3 in two veritcal sections
Answers
Answered by
1
Answer:<!DOCTYPE html>
<html>
<head>
<title>HTML frames</title>
</head>
<frameset cols="25%,50%,25%">
<frame name="left" src="top_frame.htm" >
<frame name="centre" src="main_frame.htm" >
<frame name="right" src="bottom_frame.htm" >
<noframes>
<body>
Your Browser does not support frames
</body>
</noframes>
</frameset>
</html>
Explanation:
Similar questions