JSFiddle - React, Tailwind, and code Playground

by RootAccess777

HTML

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: left;
}
</style>
</head>
<body>

<h2>Cell that spans two columns:</h2>
<table style="width:100%">
  <tr>
    <th>Name</th>
    <th colspan="3">Telephone</th>
  </tr>
  <tr>
    <td>Bill Gates</td>
    <td colspan="5">55577854</td>
    <td>55577855</td>
  </tr>
</table>

</body>
</html>