2025-01-01 17:03:09 -05:00

21 lines
489 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Shopping Cart</title>
<link type="text/css" rel="stylesheet" href="cart.css">
</head>
<body>
<h1>Shopping Cart</h1>
<table>
<tr>
<th>Item Description</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
</tr>
</table>
<script src="cart.js"></script>
</body>
</html>