HTML Tags

Tags Example
Inline Text
<SPAN>
<EM>
<STRONG>
<CITE>
<DFN>
<VAR>
<CODE>
<SAMP>
<KBD>
<ACRONYM>
<html:ABBR>
This is a SPAN text sample.
This is an EM text sample.
This is a STRONG text sample.
This is a CITE text sample.
This is a DFN text sample.
This is a VAR text sample.
This is a CODE text sample.
This is a SAMP text sample.
This is a KBD text sample.
This is an ACRONYM text sample.
This is an html:ABBR text sample.
<B>
<I>
<U>
<TT>
<BIG>
<SMALL>
This is a bold (B) text sample.
This is an italic (I) text sample.
This is an underline (U) text sample.
This is a TT text sample.
This is a BIG text sample.
This is a SMALL text sample.
<A>
<Q>
<SUP>
<SUB>
<BDO>
This is an anchor (A) text sample.
This is a Q text sample.
This is a SUP text sample.
This is a SUB text sample.
This is a BDO text sample.
Block Text
<P>
<DIV>
<PRE>
<ADDRESS>
<BLOCKQUOTE>

This is a Paragraph (P) text sample.

This is a Division (DIV) text sample.
This is a Preformatted (PRE) text sample.
This is an ADDRESS text sample.
This is a BLOCKQUOTE text sample.
Headers
<H1>
<H2>
<H3>
<H4>
<H5>
<H6>

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6
Miscellaneous
<HR>

Lists
<UL>
<LI>List Item</LI>
<LI>List Item</LI>
</UL>
  • This is a List Item.
  • This is a List Item.
<OL>
<LI>List Item</LI>
<LI>List Item</LI>
</OL>
  1. This is a List Item.
  2. This is a List Item.
<DL>
<DT>List Text</DT>
<DD>List Definition</DD>
</DL>
This is a List Text.
This is a List Definition.
This is a List Text.
This is a List Definition.