HTML frameset tag

Definition and Usage

The frameset element defines a frameset. It is used to organize multiple windows (frames). Each frame holds a separate document. In its simplest use, the frameset element states only how many columns or rows there will be in the frameset. You must use the cols or the rows attribute. 

The source code in "planets.htm":
<html>
<frameset cols = "25%, 25%,*">
  <frame src ="venus.htm" />
  <frame src ="sun.htm" />
  <frame src ="mercur.htm" /> 
</frameset>
</html>

http://www.w3schools.com/tags/tag_frameset.asp

posted @ 2008-02-22 11:13  许晓光  阅读(232)  评论(0编辑  收藏  举报