To do
• Read this article: http://www.w3schools.com/html/html_tables.asp
• Type this into the body of a html file.
<table border="2">
   <tr>
	<td>Lil Wayne</td>
	<td>B.I.G</td>
    </tr>
    <tr>
	<td>2Pac</td>
	<td>Kendrick Lamar</td>
    </tr>
</table>
• Open in your browser.
To do
• Add in two more rows.
• Add in three more columns.