+ 5
How i can make cells in html tag
Which tag is used
7 Respostas
+ 4
<td>
+ 3
Inside the <table> tag you create a <tr> tag which contains cells of the <td> tag.
+ 2
<table></table> define una tabla luego adentro <tr></tr> que define una columna de la tabla <td></td> define una celda. Ejemplo:
<table>
<tr>
<td>
Celda numero 1
</td>
</tr>
</table>
+ 1
And how can i add converter tag in cells
+ 1
shahziab add whatever you want in the <td>
+ 1
<table>
<tr>
<td>hello sololearn </td>
</tr>
</table>
0
you use html table element.
<table>
<tr>
<td>cells</td>
<td>cells</td>
</tr>
</table>