-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
68 lines (60 loc) · 2.28 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=360, initial-scale=1">
<title></title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">
<link rel="stylesheet" href="main.css">
</head>
<body>
<main class="main-container">
<section class="section">
<h2 class="text-center">Products</h2>
<div class="products">
<div class="product">
<img class="product__image" src="img/products/beer.jpg" alt="Beer">
<h2 class="product__name">Beer</h2>
<h3 class="product__price">6.00</h3>
<button class="btn btn--primary" data-action="ADD_TO_CART">Add To Cart</button>
</div>
<div class="product">
<img class="product__image" src="img/products/energy-drink.jpg" alt="Energy Drink">
<h2 class="product__name">Energy Drink</h2>
<h3 class="product__price">5.00</h3>
<button class="btn btn--primary" data-action="ADD_TO_CART">Add To Cart</button>
</div>
<div class="product">
<img class="product__image" src="img/products/juice.jpg" alt="Juice">
<h2 class="product__name">Juice</h2>
<h3 class="product__price">4.00</h3>
<button class="btn btn--primary" data-action="ADD_TO_CART">Add To Cart</button>
</div>
<div class="product">
<img class="product__image" src="img/products/milk.jpg" alt="Milk">
<h2 class="product__name">Milk</h2>
<h3 class="product__price">2.50</h3>
<button class="btn btn--primary" data-action="ADD_TO_CART">Add To Cart</button>
</div>
<div class="product">
<img class="product__image" src="img/products/mineral-water.jpg" alt="Mineral Water">
<h2 class="product__name">Mineral Water</h2>
<h3 class="product__price">1.00</h3>
<button class="btn btn--primary" data-action="ADD_TO_CART">Add To Cart</button>
</div>
<div class="product">
<img class="product__image" src="img/products/smoothie.jpg" alt="Smoothie">
<h2 class="product__name">Smoothie</h2>
<h3 class="product__price">6.00</h3>
<button class="btn btn--primary" data-action="ADD_TO_CART">Add To Cart</button>
</div>
</div>
</section>
<section class="section">
<h2 class="text-center">Cart</h2>
<div class="cart"></div>
</section>
</main>
<script src="main.js"></script>
</body>
</html>