write a html code to divide browser window and write text on that window.

in this html tutorial we are coding to divide browser window in to two horizontal section. the top section should display "INDIA IS BEAUTIFUL" in center of the page. the botton frame should display message "must visit" in bolt font.

feame.html
<html>
<frameset rows=50%,*>
<frame src="one.html">
<frame src="sec.html">
</frameset>
</html>

one.html
<html>
<body>
<b>must visit</b>
</body>
</html>

sec.html
<html>
<body>
<h1 align=center>INDIA IS BEAUTIFUL</h1>
</body>
</html>

output:-
write a html code to divide browser window and write text on that window.

Post a Comment

0 Comments