Write a html code to divide browser window into two vertical sections. Divide left section into two horizantal sections.
Answers
Answered by
1
/HTML.py
/HEAD
Divide the left section into two categories
/Blankspace.py
<io>stream.pop
<do>when divide do divide the left section.
test it
Answered by
0
Answer:
<html>
<head>
<title>Divide browser</title>
</head>
<frameset cols = "50%, 50%">
<frameset rows = "50%, 50%">
<frame name = "left-top" src = "file URL">
<frame name = "left-bottom" src = "file URL">
</frameset>
<frame name = "right" src = "file URL">
<noframes>
<body> Frames are not supported by your browser. </body>
</noframes>
</frameset>
</html>
Explanation:
Frameset tag in HTML:
- HTML frames are used to divide your browser window into multiple sections where every section can load a separate HTML record.
- A group of frames in the browser window is known as a frameset.
- <frameset> tag is used for creating frames in a webpage.
- The rows attribute of the <frameset> tag divides the window into horizontal frames.
- The cols attribute of the <frameset> tag divides the window into vertical frames.
Note: HTML5 does not support frames.
Learn more about Frameset:
https://brainly.in/question/23698111
https://brainly.in/question/2485687
Similar questions