View difference between Paste ID: gvFkPQNM and
SHOW: | | - or go back to the newest paste.
1-
1+
<h1> Main Heading</h1>
2
<p>This is paragraph one. In it, there is <strong>bold text</strong>, <em>italized text</em> and <q>quoted text</q></p>
3
4
<h2> Paragraph 2 </h2>
5
<p>I was told that I needed two paragraphs, so I guess this one needs a <button>button of some sort</button></p>
6
7
<h3>The List</h3>
8
<ul>
9
	<li>Three</li>
10
	<li>One</li>
11
	<li>Two</li>
12
	<li>Four</li>
13
</ul>
14
15
<h4>The Table</h4>
16
17
<table>
18
	<tr>
19
		<th>Number 1</th>
20
		<th>Number 2</th>
21
		<th>Sum</th>
22
	</tr>
23
	
24
	<tr>
25
		<td>1</td>
26
		<td>4</td>
27
		<td>5</td>
28
	</tr>
29
	
30
	<tr>
31
		<td>5</td>
32
		<td>10</td>
33
		<td>15</td>
34
	</tr>
35
	
36
	<tr>
37
		<td>20</td>
38
		<td>32</td>
39
		<td>52</td>
40
	</tr>
41
</table>