21 lines
481 B
HTML
21 lines
481 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> |