mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
32 lines
663 B
HTML
32 lines
663 B
HTML
|
<html>
|
||
|
<head></head>
|
||
|
<body>
|
||
|
<form>
|
||
|
<table border="1">
|
||
|
<tr>
|
||
|
<input type="hidden"><!-- these fields are breaking the table -->
|
||
|
<td rowspan="2">5</td>
|
||
|
<td rowspan="2">**</td>
|
||
|
<td>Text text text</td>
|
||
|
<td> </td>
|
||
|
<td>1970</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="4">No Holdings Available</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<input type="hidden"><!-- these fields are breaking the table -->
|
||
|
<td rowspan="2">6</td>
|
||
|
<td rowspan="2">**</td>
|
||
|
<td>Text text text</td>
|
||
|
<td> </td>
|
||
|
<td>1970</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="4">No Holdings Available</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|