Computer Science, asked by anu763, 8 months ago

write html code to divide browsee window into three horizontal section divide the middle section into two vertical section​

Answers

Answered by sahilkund42
0

Explanation:

<frameset rows="*,*">

   <frame src="TopSection.html">

   <frame src="Bottom.html">

</frameset>

</html>

TopSection.html

<html>

   <head>

     <style>

           body {background: gray;}

          text-align: center;

          vertical-align: middle ;

       </style>

   </head>

   <body>

       <h1> "INDIA IS BEAUTIFUL</h1>

   </body>

</html>

Bottom.html

<html>

   <head>

  <style>

           body {background: gray;}

    </style>

   </head>

   <body>

     INFORMATION TECHNOLOGY

   </body>

</html>

Read more on Brainly.in - https://brainly.in/question/2949211#readmore

Similar questions