Borderly Html Tables Examples
| Table Header | Table Header |
|---|---|
| Table cell 1 | Table cell 2 |
| Table cell 3 | Table cell 4 |
Thin borderly html table example
You can get a quick border around your table by using the HTML
border attribute. You determine the width of the border using a number. For example, for a thick border, use the number "2". For a thicker border, use a greater number.On the other hand for a thin border,use the number "1".<table border="1">
<tr>
<th>Table Header</th><th>Table Header</th>
</tr>
<tr>
<td>Table cell 1</td><td>Table cell 2</td>
</tr>
<tr>
<td>Table cell 3</td><td>Table cell 4</td>
</tr>
</table>
| Table Header | Table Header |
|---|---|
| Table cell 1 | Table cell 2 |
| Table cell 3 | Table cell 4 |
Thick borderly html table example
Comments
Post a Comment