HTML Hypertext Markup Language
WORKING WITH FRAMES
FRAMES CREATING VERTICAL FRAMES CREATING HORIZONTAL FRAMES CREATING BOTH VERTICAL & HORIZONTAL FRAMES SETTING THE FRAME BORDER AND THICKNESS
HTML provides the facility to divide the browser window into many sections using Frameset. A frameset in html is a way to display multiple web pages in the same browser window, at the same time. You can create Vertical as well as Horizontal frames. You can also set the frame border thickness and frame border color according to requirement BACK
If you want that your browser window divides into vertical sections then you can do it by using cols attribute of the tag. The cols attribute takes the value in percentage separated by commas
BACK
If you want that your browser window divides into horizontal sections then you can do it by using rows attribute of the tag. The rows attribute takes the value in percentage separated by commas
BACK
CREATING BOTH HORIZONTAL AND VERTICAL FRAMES
BACK
You can also apply border to your frame using frameborder attribute of the tag. If you want to set a border to your frame, you have pass either “yes” or “1” as a value of the frame border attribute. If you don’t want to set a border to your frame you have to pass either “no” or “0” as a value of the frameborder attribute. You can also set the thickness of the frame border using the framespacing attribute of the tag.
BACK