Typography

Below are HTML tags used for basic typography

Paragraph

<p>content inside the paragraph</p>

Headings

<h1>Heading one...</h1>
<h2>Heading two..</h2>
<h3>Heading three..</h3>
<h4>Heading four..</h4>
<h5>Heading five..</h5>
<h6>Heading six</h6>

Ordered List

<ol>
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
<li>List item four</li>
</ol>

Un-Ordered List

<ul>
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
<li>List item four</li>
</ul>

Quotes

<blockquote>
Some content...
</blockquote>

Table

<table>
<tr><th>Head 1</th><th>Head 2</th><th>Head 3</th></tr>
<tr><td>td11</td><td>td12</td><td>td13</td></tr>
<tr><td>td11</td><td>td22</td><td>td23</td></tr>
</table>