-->
Showing posts with label frameset with rows. Show all posts
Showing posts with label frameset with rows. Show all posts

HTML with different rows.

Here is how we create rows using frameset tag with frame src tag.
--------------------------------------------------------------------------------------------------
<html><!--root tag-->
</head><!--meta tag-->
<title><!--for title-->
frameset
</title>
</head>
<!--for frameset, we use after head and before body tag.
or we can also use without thsese tags(html,head,title)
-->
<FRAMESET rows="30%,55%,*%" noresize="noresize">
<!--defines three rows of partitions
of size 30%,55% and left over for third partition.
noresize is an attribute means it is not resizable
-->

<FRAME src="PAGEONE.HTML">
<FRAME src="PAGETWO.HTML">
<FRAME src="PAGETHREE.HTML">
<!--we have to use frame src for each partition-->
</FRAMESET>
<body>

</body>
</html>
-----------------------------------------------------------------------------------
note:
      We must have three files named pageone.html... in same folder as that first file is(index).
Otherwise, it will show error.