Body Tag <body>
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>
0 Comments