CBSE BOARD XII, asked by kaustubh772, 9 months ago

Write html code to divide browser window into two horizontal section.the top section display the message 'welcome to online exam' having font size 30

Answers

Answered by StreetLion16
0

Explanation:

<html>

<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