For Day 5 I will share the code of a basic HTML table. :)
<table>
<tbody>
<tr>
<th>Disney</th>
<th>Pixar</th>
<th>Paramount</th>
<th>DreamWorks</th>
<th>Nickelodeon</th>
</tr>
<tr>
<td>Frozen</td>
<td>COCO</td>
<td>Transformers</td>
<td>Shrek</td>
<td>Victorious</td>
</tr>
<tr>
<td>Elsa</td>
<td>Miguel</td>
<td>Mirage</td>
<td>Fiona</td>
<td>Victoria</td>
</tr>
</tbody>
</table>
Now you can try it out too. ;)