Use table tag in html

HTML Table Tags
TagDescription
<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:
TeamRanking
India1
South Africa2
Australia3

Comments