- 1
How many columns does this table have?
<table> <tr> <td>Cell 1</td> <td>Cell 2</td> <td>Cell 3</td> <td>Cell 4</td> </tr> <tr> <td>Cell 5</td> <td>Cell 6</td> <td>Cell 7</td> <td>Cell 8</td> </tr> </table> 2 4 6 8
3 Answers
+ 5
Is this a challenge for us or for you? ^^
Please make sure to check the code in code playground, it's really convenient. And if you want to post challenges for other users, use the "create quiz" option or post it in your feed.
As for the code,
<tr> tag is for rows, td is for data/column, so you have two rows and four columns.
Cheers!
+ 1
The table has 4 columns. You can see it in the HTML example
https://code.sololearn.com/WFdXJdyue8Cz/?ref=app
0
R