<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="The first assignment of code with mosh, utlimate HTML and CSS course"
/>
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="css/styles.css" />
<title>Excercise - One</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Country</th>
<th>OrderID</th>
<th>Order Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td>USA</td>
<td>1000</td>
<td>$1,300</td>
</tr>
<tr>
<td>USA</td>
<td>1001</td>
<td>$700</td>
</tr>
<tr>
<td>CA</td>
<td>1002</td>
<td>$2,000</td>
</tr>
<tr>
<td>CA</td>
<td>1003</td>
<td>$1,000</td>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">Total</td>
<td>$5,000</td>
</tr>
</tfoot>
</table>
</body>
</html>