HTML Hypertext Markup Language. WORKING WITH FRAMES.

21
HTML Hypertext Markup Language

Transcript of HTML Hypertext Markup Language. WORKING WITH FRAMES.

Page 1: HTML Hypertext Markup Language. WORKING WITH FRAMES.

HTMLHypertext Markup

Language

Page 2: HTML Hypertext Markup Language. WORKING WITH FRAMES.

WORKING WITH

FRAMES

Page 3: HTML Hypertext Markup Language. WORKING WITH FRAMES.

TO BE DISCUSSED..FRAMESCREATING VERTICAL FRAMESCREATING HORIZONTAL FRAMESCREATING BOTH VERTICAL & HORIZONTAL FRAMESSETTING THE FRAME BORDER AND THICKNESS

Page 4: HTML Hypertext Markup Language. WORKING WITH FRAMES.

FRAMESHTML 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

Page 5: HTML Hypertext Markup Language. WORKING WITH FRAMES.
Page 6: HTML Hypertext Markup Language. WORKING WITH FRAMES.
Page 7: HTML Hypertext Markup Language. WORKING WITH FRAMES.
Page 8: HTML Hypertext Markup Language. WORKING WITH FRAMES.

BACK

Page 9: HTML Hypertext Markup Language. WORKING WITH FRAMES.

CREATING VERTICAL FRAMES

If you want that your browser window divides into vertical sections then you can do it by using cols attribute of the <frameset> tag.

The cols attribute takes the value in

percentage separated by commas

Page 10: HTML Hypertext Markup Language. WORKING WITH FRAMES.
Page 11: HTML Hypertext Markup Language. WORKING WITH FRAMES.

BACK

Page 12: HTML Hypertext Markup Language. WORKING WITH FRAMES.

CREATING HORIZONTAL FRAMES

If you want that your browser window divides into horizontal sections then you can do it by using rows attribute of the <frameset> tag.

The rows attribute takes the value in percentage separated by commas

Page 13: HTML Hypertext Markup Language. WORKING WITH FRAMES.
Page 14: HTML Hypertext Markup Language. WORKING WITH FRAMES.

BACK

Page 15: HTML Hypertext Markup Language. WORKING WITH FRAMES.

CREATING BOTH HORIZONTAL

AND VERTICAL FRAMES

Page 16: HTML Hypertext Markup Language. WORKING WITH FRAMES.
Page 17: HTML Hypertext Markup Language. WORKING WITH FRAMES.

BACK

Page 18: HTML Hypertext Markup Language. WORKING WITH FRAMES.

SETTING THE FRAME BORDER AND THICKNESS

You can also apply border to your frame using frameborder attribute of the <frameset> 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 <frameset> tag.

Page 19: HTML Hypertext Markup Language. WORKING WITH FRAMES.
Page 20: HTML Hypertext Markup Language. WORKING WITH FRAMES.

BACK

Page 21: HTML Hypertext Markup Language. WORKING WITH FRAMES.

THANKS

BACK