Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
table {
    width:100%;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}

th, td {
    padding: 5px;
    text-align: left;
}

table#t01 tr:nth-child(even) {
    background-color: #eee;
}

table#t01 tr:nth-child(odd) {
   background-color:#fff;
}

table#t01 th        {
    background-color: black;
    color: white;
}

</style>
</head>
<body>

<table>
  <tr>
    <th>First Name</th>
    <th>Last Name</th>                
    <th>Points</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>                
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>                
    <td>94</td>
  </tr>
  <tr>
    <td>John</td>
    <td>Doe</td>                
    <td>80</td>
  </tr>
</table>

<br>

<table id="t01">
  <tr>
    <th>First Name</th>
    <th>Last Name</th>                
    <th>Points</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>                
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>                
    <td>94</td>
  </tr>
  <tr>
    <td>John</td>
    <td>Doe</td>                
    <td>80</td>
  </tr>
</table>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy