HTML tags cheat sheet


Bold <b>word</b>
or
<strong>word</strong>
word
Italic <i>word</i>
or
<em>word</em>
word
Unordered (bulletted) List <ul>
    <li>Item</li>
    <li>Item</li>
</ul>
  • Item
  • Item
Ordered (numbered or alpha) List <ol>
    <li>Item</li>
    <li>Item</li>
</ol>
  1. Item
  2. Item
Blockquote (indented on both sides) <blockquote>Indented text.</blockquote>
Indented text.
Paragraph (space above and below) <p>Paragraph of text.</p>

Paragraph of text.

New line Text before linebreak.<br />Text after linebreak. Text before linebreak.
Text after linebreak.
Largest Heading <h1>Largest heading</h1>

Largest heading

Next Largest Heading <h2>Next largest heading</h2>

Next largest heading

Medium Heading <h3>Medium heading</h3>

Medium heading

Smaller Heading <h4>Smaller heading</h4>

Smaller heading