HTM05


BACK

DESCRIPTION

OUTPUT

SOURCE CODE






DESCRIPTION:

      There are three types of font style BOLD, ITALIC, and UNDERLINED. The tag of bold <b>, italic <i>, and underlined <u>


..Back to the top..




OUTPUT:

HTM05.BOLD, ITALICS, and UNDERLINED           This text is in boldface.

          This text is italicized.

          This text is underlined.


..Back to the top..




SOURCE CODE:




<HTML>
<HEAD>
<TITLE>HTM05</TITLE>
</HEAD>
<BODY>
This text is in <B>boldface</B>.<BR><BR>
This text is <I>italicized</I>.<BR><BR>
This text is <U>underlined</U>.
</BODY>
</HTML>


..Back to the top..