- Get link
- X
- Other Apps
HTML Table Tags
Tag | Description |
---|---|
<table> | Defines a table |
<th> | Defines a header cell in a table |
<tr> | Defines a row in a table |
<td> | Defines a cell in a table |
<!DOCTYPE html> <html> <head> <title>HTML table Tag</title> </head> <body> <table border="1"> <tr> <th>Team</th> <th>Ranking</th> </tr> <tr> <td>India</td> <td>1</td> </tr> <tr> <td>South Africa</td> <td>2</td> </tr> <tr> <td>Australia</td> <td>3</td> </tr> </table> </body> </html>
This will produce following result:
Team Ranking
India 1
South Africa 2
Australia 3
- Get link
- X
- Other Apps
Comments
Post a Comment