write a html program to divide the browser windows into two horizontal sections.top section display name of hotel and bottom section divided into two vertical section 12th
Answers
Answered by
1
Answer:
<!DOCTYPE html>
<html>
<frameset rows = "50%, 50%">
<frame name = "top" src = "NameofHotel.png">
<frameset cols = "50%,50%">
<frame name = "bottom" src = "1.png">
<frame name = "bottom" src = "2.png">
</frameset>
</frameset>
</html>
This HTML code will give the required output.
Note=> In every src you will have to add a picture or html file so, as to show up the content otherwise the above code will just divide the browser windows only.
Frameset is not supported in HTML5.
Similar questions