Styled Table
Preview
Code
<style>
table {border-collapse:collapse;}
td, th {border:1px solid #ccc;padding:8px;}
</style>
<table>
<tr>
<th>Name</th>
<th>Country</th>
</tr>
<tr>
<td>Emma</td>
<td>UK</td>
</tr>
</table>
<style>
table {border-collapse:collapse;}
td, th {border:1px solid #ccc;padding:8px;}
</style>
<table>
<tr>
<th>Name</th>
<th>Country</th>
</tr>
<tr>
<td>Emma</td>
<td>UK</td>
</tr>
</table>