HTML Day 3 includes Table and Gradient

Includes CSS

<link rel="stylesheet" type="text/css" href="styles.css" media="all" />

Include JavaScript

<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js"></script>
<table class="table border">
<thead>
<tr>
	<th>Table Head 1</th>
	<th>Table Head 2</th>
	<th>Table Head 3</th>
</tr>
</thead>
<tbody>
<tr>
	<td>Table Data Row1</td>
	<td>Table Data Row1</td>
	<td>Table Data Row1</td>
</tr>
<tr>
	<td>Table Data Row2</td>
	<td>Table Data Row2</td>
	<td>Table Data Row2</td>
</tr>
</tbody>
<tfoot></tfoot>
</table>
.table td {
background: rgb(165,218,236);
background: linear-gradient(90deg, rgba(165,218,236,1) 0%, rgba(120,120,236,1) 35%, rgba(0,212,255,1) 100%);
}
https://cssgradient.io/