Styles help to emphasize
text in a document.
The following table summarizes some of the most commonly used text styles
in Web pages:
Container |
Meaning |
<B> </B> |
Boldface |
<STRONG>
</STRONG> |
Strongly emphasized text |
<I> </I> |
Italic |
<EM> </EM> |
Emphasized text |
<U> </U> |
Underlined |
<TT> </TT> |
Monospaced typewriter font |
<SUB> </SUB> |
Subscript |
<SUP> </SUP> |
Superscript |
Click here to review
how the following document appears in a Web browser.
<HTML> <HEAD> <TITLE>Enter the Page Title
Here</TITLE> </HEAD> <BODY> <B>This
is bold text</B><BR>
<STRONG>This is strongly emphasized
text</STRONG><BR> <I>This
is italic text</I><BR>
<EM>This is emphasized text</EM><BR>
<U>This is underlined text</U><BR>
<TT>This text is in monospaced
typewriter font</TT><BR>
Normal Text With<SUB>Subscript</SUB><BR>
Normal Text With<SUP>Superscript</SUP><BR>
</BODY> </HTML> |
|