Is it possible to add links to a table?
i am trying so when i click a row it will link to a spesific page?
<table>
<thead>
<tr>
<th>number</th>
<th>1title</th>
<th>desciptiom</th>
</tr>
</thead>
<tbody>
<tr><!-- so if i click any off these it will go to url/topic1 -->
<th>1</th>
<th>blabla</th>
<th>sdfgzdlgd xd j</th>
</tr>
<tr><!-- so if i click any off these it will go to url/topic2 -->
<th>2</th>
<th>blabla</th>
<th>sdfgzdlgd xd j</th>
</tr>
<tr> <!-- so if i click any off these it will go to url/topic3 -->
<th>2</th>
<th>blabla</th>
<th>sdfgzdlgd xd j</th>
</tr>
</tbody>
</table><table>
<thead>
<tr>
<th>number</th>
<th>1title</th>
<th>desciptiom</th>
</tr>
</thead>
<tbody>
<tr><!-- so if i click any off these it will go to url/topic1 -->
<th>1</th>
<th>blabla</th>
<th>sdfgzdlgd xd j</th>
</tr>
<tr><!-- so if i click any off these it will go to url/topic2 -->
<th>2</th>
<th>blabla</th>
<th>sdfgzdlgd xd j</th>
</tr>
<tr> <!-- so if i click any off these it will go to url/topic3 -->
<th>2</th>
<th>blabla</th>
<th>sdfgzdlgd xd j</th>
</tr>
</tbody>
</table>