Character Styles



There are a number of character styles you can use in HTML. Below are a few of them. Select the "Try IT" link to see what it looks like. See the class text book for a more complete listing.

Bold

To create bold text, surround it by the < b > < /b > tags as shown below:
Butch is a <b > Great < /b > dog

Try IT




Italics

To create italics text, surround it by the < i > < /i > tags as shown below:
Butch is a <i > Great < /i > dog

Try IT




Emphasized, Strong

To create emphasized text, surround it by the < EM > < /EM > tags. To create strong text, surround it by < STRONG > < /STRONG > tags.


Back