Computer Studies
Write short notes on Table Heading
HTML Advanced Features
28 Likes
Answer
The table heading can be defined using <TH> tag. It is used to replace <TD> tag that represents actual data cell. Normally, the top row is the table heading. We can use <TH> element in any row.
Answered By
19 Likes
Related Questions
- Fill in the blanks:- An HTML table sets the height and width in terms of _________ or _________.
- <html> <head> <Title>Prize Winners</Title> </head> <body> <Table Border="4" Bordercolor="Red" > <Caption><Marquee><font color="Blue" >Prize Winners</Marquee></Caption> <tr> <th>Name</th> <th>Marks</th> <th>Rank</th> </tr> <tr> <td>Piyali Mittal</td> <td>994</td> <td>First</td> </tr> <tr> <td>Kaushik Gupta</td> <td>991</td> <td>Second</td> </tr> <tr> <td>Mayank Sinha</td> <td>984</td> <td>Third</td> </tr> </Table> </body> </html>
- Write short notes on Table Border 
- Write short notes on Table Background