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? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
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?

8th Dec 2016, 7:11 AM
Ajay Ramamurthy
Ajay Ramamurthy - avatar
2 Respostas
+ 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>
16th Dec 2016, 11:24 AM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
- 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>
27th Dec 2016, 4:13 AM
Sajid Ali
Sajid Ali - avatar