I need to create a table in order to work further, but unfortunately I have no idea how to create this table
I tried to make this table with tags, but it didn't work. I don’t know how to make a table header so that there is a Montn column with the cells Balance now and Montnly Average under Regional Express 2019
<template>
<div class="slds-box slds-theme_default">
<table class="slds-table slds-table_cell-buffer slds-table_bordered ">
<thead>
<tr class="slds-m-around_medium">
<th class="contact">
<div class="slds-truncate" title="Name">Exp</div>
<div>MONTHS</div>
</th>
<th class="contact">
<div class="slds-truncate" title="Name">Of1</div>
</th>
<th class="contact">
<div class="slds-truncate" title="Name">Of2</div>
</th>
<th class="contact">
<div class="slds-truncate" title="Name">Of3</div>
</th>
<th class="contact">
<div class="slds-truncate" title="Name">SUMMM</div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td data-label="month">
MONTHS
</td>
<td data-label="month">
AMOUNT
</td>
<td data-label="month">
AMOUNT
</td>
<td data-label="month">
AMOUNT
</td>
<td data-label="month">
summ
</td>
</tr>
</tbody>
</table>
</div>
</template>