I can understand basic handling of <tr>
, as in the example below where we have information on each line.
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid pink;
}
</style>
</head>
<body>
<table>
<tr>
<th>Opção 1</th>
<th>Opção 2</th>
</tr>
<tr>
<td>x</td>
<td></td>
</tr>
<tr>
<td></td>
<td>x</td>
</tr>
</table>
</body>
</html>
But how can I use <tr>
to achieve the result of the example below? Where do I put two information on the same line (title and subtitle) and both in the same column?