|
|
![]() |
|
|
|

| Attributes | Values. |
| color | This attributes specifies the color of text-color. |
| Like: color name or color code (like #008000, #FF0000, | |
| #CC6600 etc) | |
| background-color | This attributes specifies the color specifies elements back ground like page background, table background color, etc |
| background-image | This attributes specifies the background image. |
| background-repeat | This attributes specifies the number of time a image shoud repeat |
| throughout the page. | |
Below is example of Background and Color attributes.
| <HTML> |
| <HEAD> |
| <TITLE>Wel-come to Netmanzil.com<TITLE> |
| <STYLE Type="text/css"> |
| H1{font-family:arial;background-color:#FF0000;} |
| P{font-size:12pt; font-style:italic; background-color:#FFFFEC; background-position:bottom-left;} |
| </STYLE> |
| <HEAD> |
| <BODY> |
| <H1>Welcome to Netmanzil.com</H1> |
| <P>Introduction to the world of World Wide Web.</p> |
| </BODY> |
| </HTML> |