JSFiddle - React, Tailwind, and code Playground
by bren
HTML
<!DOCTYPE html>
<html>
<head>
<style>
table, th
{
border:1px solid black;
}
th
{
background-color: black;
color:white;
}
</style>
</head>
<body>
<table>
<tr>
<th>Player</th>
<th>Gold</th>
<th>Score</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
<td>$150</td>
</tr>
<tr>
<td>Joe</td>
<td>Swanson</td>
<td>$300</td>
</tr>
<tr>
<td>Cleveland</td>
<td>Brown</td>
<td>$250</td>
</tr>
</table>
</body>
</html>