<table>
Tables essentially use six tags, four of which are repeated to create the table's design. These tags are:
table> and </table>
tr> and </tr>
td> and </td>
To have a table with a visible border, you will need to insert the word "border" into the <table> tag so that it will look like this: lt;table border>
<table border>
<tr>
<td>
Small text
</td>
<td>
<td>
</td>
<td>
<h3>
Larger text
</td>
</tr>
<tr>
<td>
<td>
</td>
<td>
<img src="http://www.unc.edu/courses/jomc050/smiley.gif">
</td>
<td>
<img src="http://www.unc.edu/courses/jomc050/smiley.gif">
</td>
</tr>
You will get this table
| Small text | Larger text |
|
|
To have this table without a visible border, simply remove the "border" from the "table" tag.
| Prof. Deb Aikat daikat@email.unc.edu |
Tom Hughes, teaching assistant tahughes@email.unc.edu |
| Eric Chernoff, student coordinator echernof@email.unc.edu |
Mike Manning manning1@email.unc.edu |