[Solved] How can I create a table as displayed in the below screen shot [closed]


You can add the following to css:

tr {
  border: 1px solid black;
}

th {
  border: 0;
  width: 100px;
  text-align: left;
}

Here is the snippet:

tr {
  border: 1px solid black;
}

th {
  border: 0;
  width: 100px;
  text-align: left;
}
<table border=1px solid; style="border-collapse:collapse;" RULES=COLS>
  <tr>
    <th>Duration </th>
    <th>Topic</th>
  </tr>
  <tr>
    <td>10 min </td>
    <td> Recap of FY17 CSP Incentives </td>
  </tr>
  <tr>
    <td> 20 min </td>
    <td> Partner Incentive Experience Onboarding </td>
  </tr>
  <tr>
    <td> 15 min </td>
    <td> Updating Banking Details/Partner Requirements </td>
  </tr>
  <tr>
    <td> 10 min </td>
    <td> Understanding MPN IDs </td>
  </tr>
  <tr>
    <td> 5 min </td>
    <td> Q&A and Closing Session Survey </td>
  </tr>
</table>

solved How can I create a table as displayed in the below screen shot [closed]