1
How do I get links in each row of my table, for example, I want it to be similar to the emails of Gmail, Hotmail etc., which has several lines and when you click on a specific one, open the full referent email. I tried that way, but it didn’t work:
<table class="table table-hover table-dark">
<thead>
<tr>
<th>Marca</th>
<th>Modelo</th>
</tr>
</thead>
<tbody>
<tr href="detalhe1.php">
<td>Fitch</td>
<td>4561A</td>
</tr>
<tr href="detalhe2.php">
<td>Abercrombie</td>
<td>CV591A</td>
</tr>
</tbody>
</table>
You can do it with pure HTML?