Friday, October 17, 2014

Write a HTML program to demonstrate the use of <FRAMESET> tag.

Write a HTML program to demonstrate the use of <FRAMESET> tag. Code : frameset.html <html> <head> <title>example of TABLE tag</title> </head> <frameset cols="50%,50%,25%"> <frameset rows ="*,20%,20%"> <frame src="font.html" scrolling="yes"></frame> <frame src="strong.html"></frame> <frame src="marquee.html"></frame> </frameset> <frameset rows="*,50%"> <frame src="dd-dt-dl.html" scrolling="no"></frame> <frame src="hr.html"></frame> </frameset> <frameset rows="45%,*"> <frame src="rose.jpg"></frame> <frame src="table.html"></frame> </frameset> </frameset> </body> </html>

No comments: