blog




  • Essay / How to Create Frames on Websites - 651

    How to Create Frames on Websites Dividing a web page into frames is quite simple. Frames organize web pages by dividing them into rows or columns. The basic concept of frames is that each frame is a regular, complete HTML document. This means that multiple pages are viewed on a single screen. This allows viewers to stay on one page without having to keep going to new pages. If a person wants to divide a page into 2 side-by-side frames, they need to put a full HTML document in the left frame and another full HTML document in the left frame. document in the right frame. For this to happen, it is necessary to create an additional HTML document. This third HTML document contains *FRAME* tags which specify what goes where. This is in fact its only function. The two tags used are the *FRAMESET* and *FRAME* tags. A *FRAMESET* tag is a container tag, and a *FRAME* tag is not. For those who don't know what that means, a container tag has an opening *TAG* and a closing */TAG*. The *FRAME* tag specifies html documents and whether the frame should have a border or scrollbar for each html document. The *FRAMESET* tag performs all divisions. It specifies a few things about how to divide them. (Note: If you are using web page providers such as Angelfire and Geocities, make sure the page where the frames code is running is set for Advanced HTML.) The most popular way to create frames. organized is using two columns. One is simply used for the website menu and the other as the main page to display a specific page of the website. Examples used will include how to create frames showing the division of the page into two columns and also showing the division of the page into two rows. First, name the three HTML documents index.html, the page used to divide it into frames. ; side1.html, the left column of the page used for the menu; and main.html, the page for displaying a specific page of the website. Make sure the following HTML code is used in the index.html page: *FRAMESET cols="100,*"* *FRAME src="side1.html"* *FRAME src="main.html"* */FRAMESET *. The * simply denotes the space left on the web page.