Creating a frame in HTML and how to use it




Asked on February 22, 2015
I want to create a frame in the html. Can anyone give me the example as demo..Thanks in advance :)


Replied on February 25, 2015
Hi MarvinPork.. first of all HTML 5 does not support the <frameset> tag.

Now if you are using lower version of HTML then using <frameset> tag
you can create your frame.

<html>
        <frameset cols="20%, 80%">
                <frame src="a.html">

                        <frameset rows="50%, 50%">
                                <frame src="b.html">

                                        <frameset cols="50%, 50%">
                                                <frame src="c.html">
                                                <frame src="d.html">
                                        </frameset>
                        </frameset>
        </frameset>
</html>


Write Answer










©2024 concretepage.com | Privacy Policy | Contact Us