HTML Body Tag Attributes

Body Tag <body>

HTML body tag contains all the text and graphics of the web page with all other html tags that are helpful to create a web page. All the document that are created using html markup language should be save with .html or .htm file extension.

Attribute of Body Tag:-

BGCOLOR : It is used to set the background color of the page.

Syntax :
                <body bgcolor="red">

                Text goes here

                </body>

BACKGROUND : It is used to set the background image (the file with .gif, .jpeg extension) of the page.

Syntax :

                <body background="file name.jpeg">

                 Text goes here

                </body>

TEXT : It is used to set the text color of the page.

Syntax : 

                <body text="green">

                 All text change to green color

                </body>

LEFTMARGIN : It is used to set the left margin of the page.

Syntax : 

                <body leftmargin="60px">

                 page text indent change 60px from left side.

                </body>

TOPMARGIN : It is used to set the top margin of the page.

Syntax : 

                <body topmargin="100px">

                 This document indent is change 100px from top.

                </body>







Post a Comment

0 Comments