Sunday, February 17, 2013

Frameset in HTML


Frameset
This tag is used to divide a web page into frames. It is used inside <head> tag.
Rows and cols attributes are used to divide the page into particular rows and columns.
Note:  Frame border can also be changes using border or frameborder attributes.
<head>
            <frameset rows=”50%,50%” border=”0”>
                        <frameset cols=”50%,50%”>
                                    <frame src=”page path”/>
                                    <frame src=”page path”/>
                        </frameset>
                        <frameset cols=”50%,50%”>
                                    <frame src=”page path”/>
                                    <frame src=”page path”/>
                        </frameset>
            </frameset>
</head>

0 comments:

Post a Comment

Powered by Blogger.