Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
table {
    border-collapse: collapse;
    border: 1px solid black;
}

</style>
</head>
<body>

<h2>Single Border Around The Table:</h2>

<table>
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
  </tr>
  <tr>
    <td>Peter</td>
    <td>Griffin</td>
  </tr>
  <tr>
    <td>Lois</td>
    <td>Griffin</td>
  </tr>
</table>

</body>
</html>


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