JSFiddle - React, Tailwind, and code Playground
by DandyCC
HTML
<table border="1">
<tbody>
<tr>
<th>Alumno</th>
<th>Asignatura1</th>
<th>Asignatura2</th>
<th>Asignatura3</th>
</tr>
<tr>
<td>Alumno1</td>
<td>
<input type="checkbox" />
</td>
<td>
<input type="checkbox" />
</td>
<td>
<input type="checkbox" />
</td>
</tr>
<tr>
<td>Alumno2</td>
<td>
<input type="checkbox" />
</td>
<td>
<input type="checkbox" />
</td>
<td>
<input type="checkbox" />
</td>
</tr>
</tbody>
</table>