Web Sites - Putting two pictures side by side or creating gallery

<table>
<tbody>
    <tr>
        <td>Photo 1</td>
        <td>Photo 2</td>
    </tr>
</tbody>
</table>

NOTE: Replace the Photo 1 and Photo 2 with links to your images.

If you have more then two images then, repeat part of the table code like follows:

<table>
<tbody>
    <tr>
        <td>Photo 1.1</td>
        <td>Photo 1.2</td>
    </tr>
    <tr>
        <td>Photo 2.1</td>
        <td>Photo 2.2</td>
    </tr>
    <tr>
        <td>Photo 3.1</td>
        <td>Photo 3.2</td>
    </tr>
</tbody>
</table>

NOTE: Replace the Photo * with links to your images.


Result

Photo 1.1Photo 1.2
Photo 2.1Photo 2.2
Photo 3.1Photo 3.2