so html can create only 3 row nd 3 column? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

so html can create only 3 row nd 3 column?

6th Sep 2016, 4:18 AM
shreyes
5 Answers
+ 1
like this: <table border="2"> <tr> <td>Red</td> <td>Blue</td> <td>Green</td> <td>White</td> </tr> <tr> <td>Yellow</td> <td>Orange</td> <td>Black</td> <td>Grey</td> </tr> <tr> <td>Purple</td> <td>Brown</td> <td>Gold</td> <td>Pink</td> </tr> </table>
6th Sep 2016, 3:03 PM
Carlos Alfredo Zamora Hernández
Carlos Alfredo Zamora Hernández - avatar
0
no we can create infinite no of rows and columns
6th Sep 2016, 4:26 AM
Mangesh Bondre
Mangesh Bondre - avatar
0
ohhh
6th Sep 2016, 4:29 AM
shreyes
0
you can do it in html <body> tag this like : <TABLE> <TR> <TD>1-1</TD> <TD>1-2</TD> <TD>1-3</TD> </TR> <TR> <TD>2-1</TD> <TD>2-2</TD> <TD>2-3</TD> </TR> <TR> <TD>3-1</TD> <TD>3-2</TD> <TD>3-3</TD> </TR> </TABLE>
6th Sep 2016, 7:31 AM
yeonglee
yeonglee - avatar
0
No you can create as many as you want
10th Sep 2016, 3:40 AM
Sukumar Chandrasekar
Sukumar Chandrasekar - avatar