Inline Elements list
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> </head> <body> <h1>Inline Elements</h1> <h2>Italicized</h2> <code><em> </code> <em>emphasized</em> <br /> <code><cite> </code> <cite>citation</cite> <br /> <code><var> </code> <var>computer variable</var> <br /> <code><dfn> </code> <dfn>definition</dfn> <br /> <h2>Bold</h2> <code><strong> </code> <strong>strongly emphasized</strong> <br /> <h2>Monospace</h2> <code><code> </code> <code>computer code</code> <br /> <code><kbd> </code> <kbd>key press</kbd> <br /> <code><samp> </code> <samp>sample computer output</samp> <br /> <h2>Underlined</h2> <code><a> </code> <a href="#">a</a> <br /> <code><acronym> </code> <acronym title="a" >acronym</acronym> <br /> <code><abbr> </code> <abbr title="a" >abbreviation</abbr> <br /> <h2>Vertical-aligned</h2> <code><sup> </code> superscript<sup>1</sup> <br /> <code><sub> </code> subscript<sub>1</sub> <br /> </body> </html>