Using Tables

A Simple Table

<table border=5>
<tr>
<td>Row1 Column1</td>
<td>Row1 Col 2</td>
</tr><tr>
<td>Row2 Column1</td>
<td>Row2 Col 2</td>
</tr></table>

Row 1 Column 1Row 1 Col 2
Row 2 Column 1Row 2 Col 2

A Table to Control Images and Text

<table align=center border=0 width=80%>
<tr>
<td align=center width=60%><h1>Joe's Cool Page</h1> <h2>Good to See You!</h2></td>
<td align=center width=40%><img src="globe.jpg"></td>
</tr></table>

 

This creates the following table with no borders:

Joe's Cool Page

Good to See You!

Internet Students Help Page