Computer Science, asked by subashree06, 11 months ago

what is mean by (td)(th)and (tr) tag plzzz someone help me with correct explanation.

i hope you help me friends

Answers

Answered by iAmPerfect
9
 <td> tag defines a standard cell in an HTML table.

<tr> tag defines a row in an HTML table. 

<th> tag When writing in HTML, the <th> tag is used to designate a cell that is a header for a group of cells within a table. 

subashree06: heeader meeans
subashree06: thanks for your answer
iAmPerfect: a header may be a field that precedes the main file content and describes the length of the content or other characteristics of the file.
subashree06: thanks
iAmPerfect: wlcm
iAmPerfect: dost
Answered by Anonymous
13

Hi

<td> stands for table data and it is used for making cell and containing cell data

<th> stands for table heading it is used for making heading cell, the content of <th> will be bold.

<tr> stands for table row it is used for making row.

here is the example of all tags

<table>


       <thead>


           <tr>


               <th>Heading one</th>


               <th>Heading two</th>


               <th>Heading three</th>


           </tr>


       </thead>


       <tbody>


           <tr>


               <td>Cell one</td>


               <td>Cell two</td>


               <td>Cell three</td>


           </tr>


           <tr>


               <td>Cell four</td>


               <td>Cell five</td>


               <td>Cell six</td>


           </tr>


       </tbody>


   </table>

Attachments:
Similar questions