Computer Science, asked by TheKnowledge, 1 year ago

what is <TD > tag ? explain briefly

Answers

Answered by Anonymous
5
Basically is <TD> Tag is used to create tables in the html. ...
they are used to insert the data in a well organised and a tabular form to appear as a table in the webpage that has to be created....
other attributes of TD Tags are
TR TAG.......,,
TH TAG...
TABLE TAG...

Anonymous: wc....
Answered by siddhartharao77
9
Here is a short note on TD tag in HTML:


(1) TD stands for table data.

(2) It defines a table cell

(3) It has some attributes like rowspan,colspan etc..

Ex:

<table>
<tr>
<th>Moderators</th>
<th>Brainly Guru</th>
</tr>

<tr>
<td>Nikki57</td>
<td>KVN Muthy</td>
</tr>
</table>


<!Hope this helps-->
Similar questions