•Frames
allow for multiple ".html" documents to be displayed inside of one
browser window at a time. This means that one page has no content on it, but
rather tells the browser which web pages you would like to open
Frames - A Generic Frame
Page
•Frames
are most typically used to have a menu in one frame, and content in another
frame. When someone clicks a link on the menu that web page is then opened on
the content page.
–HTML Code:
–<html>
–<head>
–</head>
–<frameset cols="30%,*">
– <frame src="menu.html">
–<frame src="content.html">
– </frameset>
–</html>
0 comments:
Post a Comment