Frames
| dy> tag for frame page. If you put the <body> tag before <frameset>, some browsers will not show the frames.
Look at my first mark [ As you may notice, this page is divided into two rows. We first specify column width = 100% (COLS="100%") and the height of the first row = 60 pixels (ROWS="60,*"). The asterisk mark [*] is the value of whatever space that left below. That means the second row will use the rest of the space. You also can specify the value in % such as ROWS="60%,40%", but specifying the value in pixels will give you greater control over page composition. Next, you will see that we have borderless frames here. This is possible by specifying border=no frameborder=0 framespacing=0. Generally, if you don't want borderless frames, you don't need to use border=, frameborder= and framespacing= attributes. You can just put this <FRAMESET COLS="100%" ROWS="60,*">, and the browsers will create frames with border for you. Look at my second mark [ |

