+ 6
why there are multiple <td> tags are used in this html code for making tables?
https://code.sololearn.com/W7XurAKjAPPV is there any other solution to make those rows empty
2 odpowiedzi
+ 7
The <td> tag is for cells that contain data
+ 4
<td> tags are used to give table data in a HTML table. Like if you've 4 data in a row then you'd be using 4 <td> tags inside a <tr> tag and so if you've multiple rows you'd be using multiple<tr> tags inside a <table>.