|
Developer Geek Resources HTML Code Examples |
Custom Search
|
| This is table cell |
| with no border |
| This is table cell |
| with a border value of 1 |
| This is table cell |
| with a border value of 2 |
| This is table cell |
| with a border value of 5 |
| This is table cell with a blue border |
Just cut-n-paste to reuse.
<table border="0">
<tr>table #1
<td>
This is table cell
</td>
</tr>
<tr>
<td>
with no border
</td>
</tr>
</table><br>
<table border="1">
<tr>table #2
<td>
This is table cell
</td>
</tr>
<tr>
<td>
with a border value of 1
</td>
</tr>
</table><br>
<table border="2">
<tr>table #3
<td>
This is table cell
</td>
</tr>
<tr>
<td>
with a border value of 2
</td>
</tr>
</table><br>
<table border="5">
<tr>table #4
<td>
This is table cell
</td>
</tr>
<tr>
<td>
with a border value of 5
</td>
</tr>
</table><br>
<table border="1" bordercolor="blue">
<tr>table #5
<td>
This is table cell with a blue border
</td>
</tr>
</table><br>