-->

HTML with columns

Just like rows, we can also create multiple columns as shown below.
----------------------------------------------------------------------------------------
<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 cols="30%,55%,*%" noresize="noresize">
<!--defines three columns of partitions
of size 30%,55% and left over for third partition.
noresize is an attribute means it is not resizable
-->
<FRAME SRC="FIRSTPAGE.HTML">
<FRAME SRC="SECOND.HTML">
<FRAME SRC="THIRD.HTML">
</FRAMESET>
<body>
</body>
</html>
--------------------------------------------------------------------------
We must have firstpage.html
secondpage.html
third.html

 

No comments:

Post a Comment