In 8th Grade today we also learned some HTML!!!
We discussed how to create a table so that we can place our images neatly into our blog posts!
<div align="center"> // Puts your table in the center of your post
<table>
<tbody>
<tr> // table row
<td> insert image here </td> // table data creates a column
<td> insert image here </td>
</tr>
</tbody>
</table>
</div>