HTML allows you to specify these modes in two ways: Logically (by the logical meaning of the special text you wish to mark) and physically (by explicitly specifying the style you want, such as italics, boldfaced, underline, etc.). You are STRONGLY urged to use the logical renderings, as these will be more consistently interpreted from browser to browser.
Note that the logical styles may not be distinct (i.e. different logical styles may be rendered in the same way). Also, some browsers do not support all physical styles. For example, Mosaic does NOT support underlined text -- this is rendered without the underline.
<EM> this is example text </EM> is rendered
"this is example text".
<STRONG> this is example strong text
</STRONG> is rendered
"this is example strong text".
<CODE> this is example code </CODE>
is rendered
"this is example code".
<SAMP> this is example text </SAMP>
is rendered
"this is example text".
<KBD> this is example text </KBD> is
rendered
"this is example text".
<VAR> this is example text </VAR> is rendered
"this is example text".
<DFN> this is example text
</DFN> is rendered
"this is example text".
<CITE> this is example text
</CITE> is rendered
"this is example text".
The physical style elements, and their renderings, are:
<TT> this is example
text </TT> is rendered
"this is example text".
<B> this is example text
</B> is rendered
"this is example text".
<I> this is example text </I> is rendered
"this is example text".
<U> this is example text </U> is rendered
"this is example text".