0
How to create a table of 2 rows and 3 columns with this sun-hot moon-cool mars-red?can anyone send me a code for this?
2 Réponses
+ 1
<table>
<tr>
<td>Sun</td>
<td>Moon</td>
<td>Mars</td>
</tr>
<tr>
<td>Hot</td>
<td>Cool</td>
<td>Red</td>
</tr>
</table>
- 1
<table border="2">
<tr>
<td>sun </td>
<td>hot </td>
<td> moon</td>
</tr>
<tr>
<td> cool</td>
<td>mars </td>
<td>red </td>
</tr>
</table>