<html>
<head>
<style>
thead {color:green;}
tbody {color:dodgerblue;}
tfoot {color:red;}
table, th, td {
border: 2px solid steelblue;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>BIG DATA </th>
<th>DIGITAL MARKETING</th>
<th>MAINFRAME </th>
</tr>
</thead>
<tfoot>
<tr>
<td>40,000</td>
<td>25,000</td>
<td>60,000</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Spark</td>
<td>SEO</td>
<td>COBOL</td>
</tr>
<tr>
<td>Scala</td>
<td>Social Media</td>
<td>DB2</td>
</tr>
</tbody>
</table>
</body>
</html>