Q. Describe about Frameset?
Now make a master page in which you write below code.
<HTML>
<HEAD>
<TITLE>My Frame Page -- The Master Page</TITLE>
</HEAD>
<FRAMESET>
</FRAMESET>
</HTML>
Now, save it in your folder (with all other files) as index.htm. If you try to open it with your browser now it would be blank. All you have done so far is make a title. Now let's start defining just how things are going to look. Tell the browser to split main window into 2 columns, each occupying 50% of the window.
<FRAMESET COLS="50%, 50 %">
</FRAMESET>
This will still give a blank output as you haven't specified what goes into windows. We have one more thing to do before our code provides some output.