code is used in the index.html page: *FRAMESET cols="100,** *FRAME src=side1.html* *FRAME src=main.html* */FRAMESET*. The * simply means the space that is left over on the web page. The 100 means that the first frame is 100 pixels wide. That code should be used to divide a page into two columns. Be sure to adjust it to the size needed for the web site.Dividing a page into rows uses the same concept; however, the *FRAMESET* code is slightly different. Use the same three html documents: index.html, side1.html, and main.html. This code should be used in the index.html page: *FRAMESET rows=65,** *FRAME src=side1.html* *FRAME src=main.html* */FRAMESET*.A person can also decide whether he/she wants the frame to have scrollbars or borders. It should be specified in the *FRAME* tag like this: *FRAMEBORDER=0* *FRAMESET cols=100,** *FRAME src=side1.html scrolling=no border=false* *FRAME src=main.html scrolling=yes border=false*. That code will make the left column not to have scrollbars whereas the main column will have scrollbars.It is possible to divide a page into more than two frames, but they must be specified in the *FRAMESET* tag, and more html documents will have to be made. For example, *FRAMESET rows=65,*,65* will divide a page into three rows in which the first and last will be 65 pixels tall, while the middle will be what is left over. Sometimes when too many frames are used, it is confusing to the viewer. Using only a few frames will make viewing a web site easier and more organized. Viewing web pages in frames make visiting it easier and more enjoyable. Looking at nice layouts will keep the visitors coming back. After figuring out how to do frames, everyone will realize how easy it really is....