
Untitled
By: a guest on
Sep 28th, 2012 | syntax:
HTML | size: 0.67 KB | hits: 50 | expires: Never
<h1> Main Heading</h1>
<p>This is paragraph one. In it, there is <strong>bold text</strong>, <em>italized text</em> and <q>quoted text</q></p>
<h2> Paragraph 2 </h2>
<p>I was told that I needed two paragraphs, so I guess this one needs a <button>button of some sort</button></p>
<h3>The List</h3>
<ul>
<li>Three</li>
<li>One</li>
<li>Two</li>
<li>Four</li>
</ul>
<h4>The Table</h4>
<table>
<tr>
<th>Number 1</th>
<th>Number 2</th>
<th>Sum</th>
</tr>
<tr>
<td>1</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>5</td>
<td>10</td>
<td>15</td>
</tr>
<tr>
<td>20</td>
<td>32</td>
<td>52</td>
</tr>
</table>