Currently, I am in the process of designing a table that will function as a popup when a link is clicked within my imported SQL table. An example of this table is included with this message for reference.
After conducting thorough research, I attempted to construct a table similar to the one featured in the attached image.
This is an outline of my approach:
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
</style>
</head>
<body>
<table style="width:30%">
<tr>
<th>PT</th>
<th>OT</th>
<th>SLP</th>
<th>NSG</th>
<th>NTA</th>
</tr>
<tr>
<td>15</td>
<td>15</td>
<td>2</td>
<td>11</td>
`<td>9</td>`
</tr>
</table>
</body>
</html> </pre>
I anticipate the final output to mirror the image shared in the post