JSFiddle - React, Tailwind, and code Playground
by Dineshkani
HTML
<table>
<tr>
<th>username</th>
<th>password</th>
</tr>
<tr>
<td>Dinesh</td>
<td>kani</td>
</tr>
<tr>
<td>hello</td>
<td>world</td>
</tr>
</table>
CSS
table, th, td{
border: 1px solid black;
}