-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
33 lines (33 loc) · 1.05 KB
/
shop.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
<h1>Our Products</h1>
<div class="products">
<div class="product">
<h2>Product 1</h2>
<p>Price: $10</p>
<button onclick="addToCart('Product 1', 10)">Add to Cart</button>
</div>
<div class="product">
<h2>Product 2</h2>
<p>Price: $15</p>
<button onclick="addToCart('Product 2', 15)">Add to Cart</button>
</div>
<div class="product">
<h2>Product 3</h2>
<p>Price: $20</p>
<button onclick="addToCart('Product 3', 20)">Add to Cart</button>
</div>
</div>
<a href="cart.html" class="button">Go to Cart</a>
</div>
</body>
</html>