This is custom table with css in line.
<body>
<style>
table, th{
border: 1px solid black;
border-collapse: collapse;
}
td{
border-right: 1px solid black;
}
</style>
<table cellpadding="5">
<tr>
<th>No</th>
<th>Name</th>
<th>Gender</th>
</tr>
<tr>
<td>1</td>
<td>Ros dul</td>
<td>M</td>
</tr>
<tr>
<td>2</td>
<td>Chen Seng</td>
<td>F</td>
</tr>
<tr>
<td>3</td>
<td>Dinna Ros</td>
<td>M</td>
</tr>
</table>
</body>
0 Comments