-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
51 lines (45 loc) · 1.71 KB
/
index.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!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" />
<title>Shop</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="toolbar">
<h1 class="brand">Shop</h1>
<p>
<a href="cart.html">
Cart items:
<span id="count">0</span>, Price:
<span id="sum">0</span>
</a>
</p>
</div>
<div class="products">
<div class="product">
<h3>Product one</h3>
<p>Price: 2000</p>
<button class="btn btn-primary" data-id="1" data-price="2000" data-title="Product one">Add to cart</button>
</div>
<div class="product">
<h3>Product two</h3>
<p>Price: 3000</p>
<button class="btn btn-primary" data-id="2" data-price="3000" data-title="Product two">Add to cart</button>
</div>
<div class="product">
<h3>Product three</h3>
<p>Price: 6000</p>
<button class="btn btn-primary" data-id="3" data-price="6000" data-title="Product three">Add to cart</button>
</div>
<div class="product">
<h3>Product four</h3>
<p>Price: 1000</p>
<button class="btn btn-primary" data-id="4" data-price="1000" data-title="Product four">Add to cart</button>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>