HTML Cheat-Sheet

Markup-Code Formatted Result
Compiled by Alexander Sasse
<em>italic text</em> italic text
<strong>bold text</strong> bold text
<u>underlined text</u> underlined text
<strong><em>bold italic text</em></strong> bold italic text
<strong><em><u>bold italic underlined text</u></em></strong> bold italic underlined text
text <sup>supertext</sup> text supertext
Links: <a href="http://www.example.com">http://www.example.com</a> Links: http://www.example.com
<img src="http://www.example.com/image.jpg" />
<h1>Headtext</h1>
...
<h6>Headtext</h6>

Headtext

...
Headtext
<blockquote>Quoted text here</blockquote>
Quoted text here
<code>Block code</code> Block code
<ul><li>Listpoint 1 </li>
<li>Listpoint 2 </li>
<ul><li>Listpoint 3</li>
<li>Listpoint 4</li></ul>
<li>Listpoint 5</li>
<li>Listpoint 6</li>
</ul>

  • Listpoint 1
  • Listpoint 2
    • Listpoint 3
    • Listpoint 4
  • Listpoint 5
  • Listpoint 6
<hr />