Displaying Three page in a browser using FRAMESET
|
|
|
Question / Problem
|
how to display two or more pages displaying in the same page using frame set?
|
Solution
|
Solution: 1.create four html document as1.html,2.html,3.html.frameset.html 2.create a folder on drive D: as Frameset 3.save the file on the folder frame set 4.my own coding is show below
1.html
<html> <head> <title> selections </title> <body> <marquee ><font face="ariel"color="blue">there are more no of jobs avalble at online or offline </font></marquee> </body> </html>
2.html
<html> <head> <title> selections </title> <body> <marquee><font face="ariel"color="geen"> offline jobs </font></marquee> </body> </html>
3.html
<html> <head> <title> selections </title> <body> <marquee><font face="ariel"color="red"> online jobs </font></marquee> </body> </html>
frameset.html
<html> <head> <title>jobs selectons </title> <frameset rows="25%,25%,100%"> <frame src="D:\frameset\1.html"> <frame src="D:\frameset\2.html"> <frame src="D:\frameset\3.html"> </frameset> </html>
by running frameset.html to view the output
|
Applies to |
|
HTML
|
Rank It |
|