Table Border

Example adding borders to a table.

Preview

Code

<table style="border:1px solid black;border-collapse:collapse;">
<tr>
<th style="border:1px solid black;">Name</th>
<th style="border:1px solid black;">City</th>
</tr>
<tr>
<td style="border:1px solid black;">Alice</td>
<td style="border:1px solid black;">Paris</td>
</tr>
</table>

More HTML Tables Examples (11)