+ 1
Why won't this code on sololearn work and how do I make it work?
On sololearn I was given this code: <table> <tr> <td> <td> <td> </tr> </table> Which is supposedly suppose to make a table with one row and three columns but when I typed it in on sololearn's online IDE it output anything and I don't understand why. Unless I've done something wrong how do I make it work?
3 Answers
+ 5
Try adding some input to the table data td then close each with </td>
<td>1</td>...
+ 3
I guess you forgot to close the <td>.
<table>
<tr>
<td> info1 </td>
<td> info2 </td>
<td> info3 </td>
</tr>
</table >
- 1
after opening the <td> tags you forgot to close them try that.