Table Style 1
| S.No | Heading 1 | Heading 2 | Heading 3 |
| 1 | Lorem | Lorem | Lorem |
| 2 | Lorem | Lorem | Lorem |
<div class="col-md-12 col-lg-12">
<div class="heading-1 table-style-1 text-center">
<h2>Table Style 1</h2> </div>
<div class="table-1">
<table>
<thead>
<th>S.No</th>
<th>Heading 1</th>
<th>Heading 2</th>
<th>Heading 3</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Lorem</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
<tr>
<td>2</td>
<td>Lorem</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
</tbody>
</table>
</div>
</div>
Table Style 2
| S.No | Heading 1 | Heading 2 | Heading 3 |
| 1 | Lorem | Lorem | Lorem |
| 2 | Lorem | Lorem | Lorem |
<div class="col-md-12 col-lg-12 table-style-2">
<div class="heading-1 table-style-2 text-center">
<h2>Table Style 2</h2> </div>
<div class="table-2">
<table>
<thead>
<th>S.No</th>
<th>Heading 1</th>
<th>Heading 2</th>
<th>Heading 3</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Lorem</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
<tr>
<td>2</td>
<td>Lorem</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
</tbody>
</table>
</div>
</div>
Table Style 3
| S.No | Heading 1 | Heading 2 | Heading 3 |
| 1 | Lorem | Lorem | Lorem |
| 2 | Lorem | Lorem | Lorem |
<div class="col-md-12 col-lg-12 table-style-2">
<div class="heading-1 table-style-1 text-center">
<h2>Table Style 3</h2> </div>
<div class="table-3">
<table>
<thead>
<th>S.No</th>
<th>Heading 1</th>
<th>Heading 2</th>
<th>Heading 3</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Lorem</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
<tr>
<td>2</td>
<td>Lorem</td>
<td>Lorem</td>
<td>Lorem</td>
</tr>
</tbody>
</table>
</div>
</div>