answersLogoWhite

0

Place your text inside a paragraph tag.

<p>HTML are advancing mobility in the 21st century</p>

(Notice I made "are" in proper case. We'll fix this with styles.)

Add a tag around the word "are" so the its set off from the rest of the paragraph. A good tag choice would be STRONG.

<p>HTML <strong>are</strong> advancing mobility in the 21st century</p>

Now, inside your stylesheet, add a definition for the strong tag that looks like this:

strong {}

Adding the proper properties, in order these are color, weight (boldness) and "transform."

strong{

color: red;

font-weight: bold;

text-transform: uppercase;

}

User Avatar

Wiki User

12y ago

What else can I help you with?