Page 110 - iPro_trackGPT_V5_Class6
P. 110
Property Value Description
Specifies the background colour to
background-color Name of the colour
be used on the web page.
Specifies the image to be used in the
background-image URL of image
background on the web page.
repeat, repeat-x, repeat-y,
Specifies the repetition of an image on
background-repeat (whereas, x- horizontal &
the web page.
y-vertical) no repeat
Create an HTML5 web page by using the background properties.
<!DOCTYPE html>
<html>
<head>
<title>Nouns</title>
</head>
<body style=”background-color: #f0f8ff;”>
<h1 style=”background-image: url(‘noun-header.jpg’); background-repeat:
repeat-x; color: white; text-align: center;”>
Understanding Nouns
</h1>
<p style=”background-color: #e0f7fa; color: red”>
A <b>noun</b> is a word that names a person, place, thing, or idea.
Nouns are one of the most important parts of speech in the English language.
</p>
<h2 style=”background-color: #4682b4; color: white; padding: 10px;”>
Types of Nouns
</h2>
<b>Common Noun:</b> A general name for a person, place, or thing (e.g.,
“city,” “teacher”).<br>
<b>Proper Noun:</b> A specific name of a person, place, or thing (e.g.,
“London,” “Mr. Smith”).<br>
<b>Abstract Noun:</b> Names an idea, quality, or concept (e.g.,
“freedom,” “love”).<br>
<b>Collective Noun:</b> A word that names a group (e.g., “team,”
“flock”).
</body>
</html>
108 TrackGPT iPRO (V5.0)-VI

