Page 154 - ThinkGPT_V2.1_C8_Flipbook
P. 154
Background Properties
The background properties are used to make changes in the background of a web page. The various
background properties and their values are given in the table.
Property Value Description
Specifies the background colour
background-color Name of the colour
to be used on the web page
Specifies the image to be used in
background-image URL of image
the background on the web page
repeat, repeat-x, repeat-y, (whereas, Specifies the repetition of an image
background-repeat
x- horizontal & y-vertical) no repeat on the web page
Create an HTML5 web page by using the background properties.
<!DOCTYPE html>
<HTML>
<HEAD>
<STYLE>
BODY {background-image: url(“D:\tile.png”);
background-repeat:repeat-y;}
H1 {background-color:green;
text-align:center;}
</STYLE>
</HEAD>
<BODY>
<H1>Tiles</H1>
</BODY>
</HTML>
152 Premium Edition-VIII

