I have designed a site and im coding it now.. Im not sure how i would code the navigation content box.
Look here for my site design : Click Here!!!
So i would want to code that navigation content box... I don't know should i use CSS doing it or basic HTML.. like
Quote
HTML Code
<table>
<tr>
<td><img src="nav.jpg"></td>
</tr>
<tr>
<td background="nav-content.jpg">Home</td>
</tr>
</table>
<table>
<tr>
<td><img src="nav.jpg"></td>
</tr>
<tr>
<td background="nav-content.jpg">Home</td>
</tr>
</table>
Quote
CSS Code
<table>
<tr>
<td><img src="nav.jpg"></td>
</tr>
<tr>
<td class="nav">Home</td>
</tr>
</table>
<table>
<tr>
<td><img src="nav.jpg"></td>
</tr>
<tr>
<td class="nav">Home</td>
</tr>
</table>
Soo should i use CSS or HTML??
