JSFiddle - React, Tailwind, and code Playground
HTML
<table style="width:500px">
<tbody>
<tr>
<th><strong>Becas</strong></td>
<th><strong>Organización</strong></td>
<th><strong>Fecha</strong></td>
<th><strong>Enlace</strong></td>
</tr>
<tr>
<td>Becas de Investigación</td>
<td>Banco de España</td>
<td>31-ene</td>
<td><a href="http://www.bde.es/bde/es/secciones/convocatorias/Becas/">http://www.bde.es/bde/es/secciones/convocatorias/Becas/</a></td>
</tr>
<tr>
<td>Convocatoria PERMANENTE para proyectos de investigación</td>
<td>Instituto Nacional de la Administración Pública</td>
<td>Todo el año</td>
<td><a href="http://www.inap.es/convocatoria-permanente">http://www.inap.es/convocatoria-permanente</a></td>
</tr>
</tbody>
</table>
CSS
table{
width:500px;
}
th{
width:120px;
}
td{
width:120px;
white-space: nowrap;
}