Tables Style 1
| S.no | Heading 1 | Heading 2 | Heading 3 | 
|---|---|---|---|
| 1 | Lorem | Lorem | Lorem | 
| 2 | Lorem | Lorem | Lorem | 
        
<div class="table-style-1">
<div class="container">
<h2>Tables Style 1</h2>
<table class="table">
	<thead>
		<tr>
			<th>S.no</th>
			<th>Heading 1</th>
			<th>Heading 2</th>
			<th>Heading 3</th>
		</tr>
	</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>
        
        
    
Tables Style 2
| S.no | Heading 1 | Heading 2 | Heading 3 | 
|---|---|---|---|
| 1 | Lorem | Lorem | Lorem | 
| 2 | Lorem | Lorem | Lorem | 
        
           <div class="table-2-style table-style-1">
<div class="container">
<h2>Tables Style 2</h2>
<table class="table">
	<thead>
		<tr>
			<th>S.no</th>
			<th>Heading 1</th>
			<th>Heading 2</th>
			<th>Heading 3</th>
		</tr>
	</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>
        
        
    
