Write code on HTML to divide the browser window into two horizontal section and display topic name in the top most frame
Answers
Answered by
3
HEYA MATE YOUR ANSWER IS
<html>
<frameset rows="*,*">
<frame src= "TopSection.html">
<frame src="Bottom.html">
</frameset>
</html>
TopSection.html
<html>
<head>
<style>
body {background: pink;}
text-align: centre;
vertical-align:middle;
</style>
</head>
<body>
<h1> "BRAINLY IS SO IMPORTANT APP</h1>
</body>
</html>
Bottom.html
<html>
<head>
<style>
body {background: gray;}
</style>
</head>
<body>
IT HELPS ALL THE STUDENTS
</body>
</html>
Similar questions