0
How do I create 2 horizontal tables next to each other in html?
2 Antworten
+ 2
<div>
<table border="2" align="left" height="100" width="65" bgcolor="white">
<tr>
<td>±±±±±±</td>
</tr>
</table>
<table border="2" align="left" height="100" width="65" bgcolor="white">
<tr>
<td>±±±±±±</td>
</tr>
</table>
</div>
0
thank you