<TD> Tag:-
Td element <TR> टैग के अंदर है और टेबल कॉलम को defines करता है। यह एक कंटेनर element है इसलिए यह <TD> टैग से शुरू होता है और </TD> के साथ closed होता है table में column की संख्या TR element के अंदर TD element की संख्या पर निर्भर करती है।
<TH> Tag:-
Table heading को <th> टैग का उपयोग करके defined किया जा सकता है। हम इस टैग का उपयोग तब करते हैं जब हमें टेबल कॉलम में कुछ हेडिंग टेक्स्ट लिखने की आवश्यकता होती है।
<th> and <td> tag attribute:-
Notes:-Align, Valign, bgcolor, background का उपयोग <tr> टैग attribute के समान ही किया जाता है।
- Width:-इसका उपयोग कॉलम की चौड़ाई set करने के लिए किया जाता है।
Syntax:-<td width=value> Eg. <td width=50>
- Rowspan:-इसका उपयोग cells को row के अनुसार मर्ज करने के लिए किया जाता है। हम मर्ज करने के लिए cells की संख्या specify करते हैं।
Syntax:-<td rowspan=number> Eg. <tdrowspan=3>
- Colspan:-इसका उपयोग cells को कॉलम के अनुसार मर्ज करने के लिए किया जाता है। हम मर्ज करने के लिए cells की संख्या specify करते हैं।
Syntax:-<td colspan=number> Eg. <td colspan=2>
<TD> Tag:-
TD element is inside <TR> tag and used defines table columns. It is a container element so it starts with <TD> tag and ends with <TD>. The number of columns in the table depends on number of TD elements, within the TR element.
<TH> Tag:-
Table heading can be defined using <th> tag. We use this tag when we need to write some heading text in table column, so it replace the <td> tag with <th>.
<th> and <td> tag attribute:-
Align, Valign, bgcolor, background are used to same as <tr> tag attribute.
- Width:- it is used to set width of the column. It can be specified either in terms of pixels.
Syntax:- <td width=value> Eg. <td width=50>
- Rowspan:- it is used to merge cells row wise. We specify number of cells to merge.
Syntax:- <td rowspan=number> Eg. <td rowspan=3>
- Colspan:- it is used to merge cells column wise. We specify number of cells to merge.
Syntax:- <td colspan=number> Eg. <td colspan=2>