<html>

<head>
<title>Title of Web Page</title>
</head>

<body>

Hello!      

<p> 

<img src="http://hedges.org/argentina/July2002/us.jpg">                 

<p>

<a href="http://mattandclau.com">Look at Pictures of Matt and Claudia!</a> 

<table border="2">                                                                      A table is enclosed in the <table> tags.  A table is composed of rows (tr = table rows) and table data (td = table data).  Table data  is always inside rows.  The border attribute goes within the opening table tag.   This tells how big of a border will be around the cells.
<
tr>                                                                                                                                      So, to make a table with two rows and two columns, you use the data to the left.  Now look at THE SOURCE CODE for tutorialfin.htm .
    <td>
Upperleft table stuff</td>
    <td>
Upperright table stuff</td>
</
tr>
<
tr>
    <td>
Lowerleft shiznet</td>
    <td>
Lowerright shiznet</td>
</table>

</body>

</html>