The following code will create a page with two frames, one above the other, equally sized.. You can enter the filenames of the pages you want for each frame and the names, after the frame src which is the frame source. Top and Bottom are used here to identify the frames.
<FRAMESET rows="50%,50%" >
<frame src="Your web page" name="Top">
<frame src="Your other web page" name = "Bottom">
</frameset>
In this one, the frames are beside each other and they are named left and right.
<FRAMESET cols="50%,50%" >
<frame src="Your web page" name="Left">
<frame src="Your other web page" name = "Right">
</frameset>
Frames are used to divide the HTML page into sections. The <frame> tag is used for that purpose.
<frame>
By using frames, you can display more than one HTML document in the same browser window. The frameset tag defines how to divide the window into frames. Each frameset defines a set of rows or columns to the size, or percentage of the page the frame is. The tag is used within the Frameset tag to assign (define) the source of the HTML to display in each frame. for example
In HTML web programming one uses a frameset to create less linear looking websites. Frameset versions were created to make transferring documents that conformed to the old HTML specification easier.
You can use hyperlinks in frames too in an HTML document. You can place the anchor tag out side of a frame.
The HTML tag is called the "anchor" tag.
The tag FRAME in HTML permits you to display more than one HTML document within a single browser window by dividing it into sections known as frames. Frame targeting is controlling which frame the information is going to. Below is a very simple block of code to explain this process. <frameset rows="40,*"> <frame src="text1.html" name="smasher1"> <frame src="text2.html" name="smasher2"> </frameset> This is setting up the frames and naming them smasher1 and smasher2. When you need to put information into a certain frame you use the TARGET tag. Originally we were displaying text1.html in the first frame named smasher1. Now if we execute the command below text1 is now replaced with text3 in the first frame (smasher1) and the second frame is still displaying text2.html ... <a href="text3.htm" target="smasher1">
The tag will make all of three hypertext links load their HTML into a different frame. I hope this is what you were looking for!!!
The first tag you use when developing an HTML document is the tag. The first tag you use for the main content of your page is the tag. is the tag that marks the top of an HTML page. The minimum required first like is , which starts the definition of the page content.
It all depends. Sometimes it could be the <frame> tag. Sometimes the <object> and <param> tags. Sometimes the <embed> tag
html
<head>