-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
155 lines (134 loc) · 6.13 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!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">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" type="text/css" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<script src="js/main.js" async></script>
<title>Shopping Cart</title>
</head>
<body>
<header>
<div class="navbar">
<strong>
<div class="logo"> DeliveryFood.com </div>
</strong>
</div>
<div class="navbar-container">
<div class="topnav">
<a href="">Home</a>
<a href="">Contact</a>
<a href="">About</a>
</div>
<!--CART-->
<div id="cart-info" class="nav-info cart-info">
<span class="cart-info__icon"><i class="fas fa-shopping-cart"></i></span>
<p><span id="item-count">0 </span> items
</p>
</div>
<section class="cart" id="cart">
<h1 class="section-header">CART</h1>
<div class="cart-row">
<span class="cart-item cart-header cart-column">ITEM</span>
<span class="cart-price cart-header cart-column">PRICE</span>
<span class="cart-quantity cart-header cart-column">QUANTITY</span>
</div>
<div class="cart-items">
</div>
<div class="cart-total">
<strong class="cart-total-title">Total</strong>
<span class="cart-total-price">$0</span>
</div>
<button class="btn btn-primary btn-purchase" type="button">PURCHASE</button>
</section>
</div>
</header>
<div class="main-container">
<P class="title">Foods</P>
</div>
<div id="filterButtons">
<button class="btn active" onclick="filterSelection('all')">All</button>
<button class="btn" onclick="filterSelection('Hamburger')">Hamburger</button>
<button class="btn" onclick="filterSelection('Pizza')">Pizza</button>
<button class="btn" onclick="filterSelection('Nuggets')">Nuggets</button>
</div>
<section class="container">
<div class="products">
<div class="product Hamburger">
<img src="img/Cheeseburger.png" class="product__image">
<h5 class="product-title">CheeseBurger</h5>
Hamburger with cheddar and fries
<div class="shop-item-details">
<h3 class="product__price">$10</h3>
<button class="btn btn--primary ADD_TO_CART">Add to Cart</button>
</div>
</div>
<div class="product Hamburger">
<img src="img/Chickenburger.png" class="product__image">
<h5 class="product-title">ChickenBurger</h5>
Chicken Burger with fries
<div class="shop-item-details">
<h3 class="product__price">$11</h3>
<button class="btn btn--primary ADD_TO_CART">Add to Cart</button>
</div>
</div>
<div class="product Hamburger">
<img src="img/Chorizoburger.png" class="product__image">
<h5 class="product-title">ChorizoBurger</h5>
Hamburger with Chorizo and fries
<div class="shop-item-details">
<h3 class="product__price">$13</h3>
<button class="btn btn--primary ADD_TO_CART">Add to Cart</button>
</div>
</div>
<div class="product Hamburger">
<img src="img/BBQporkburger.png" class="product__image">
<h5 class="product-title">BBQ Sauce Pulled Pork Burger</h5>
Pork Burger with BBQ Sauce Pulled Pork and fries
<div class="shop-item-details">
<h3 class="product__price">$15</h3>
<button class="btn btn--primary ADD_TO_CART">Add to Cart</button>
</div>
</div>
<div class="product Pizza">
<img src="img/Pizza.jpg" class="product__image">
<h5 class="product-title">Pizza Margherita</h5>
Pizza with double cheese
<div class="shop-item-details">
<h3 class="product__price">$8</h3>
<button class="btn btn--primary ADD_TO_CART">Add to Cart</button>
</div>
</div>
<div class="product Pizza">
<img src="img/PeperoniPizza.png" class="product__image">
<h5 class="product-title">Pizza Peperoni</h5>
Pizza with peperoni
<div class="shop-item-details">
<h3 class="product__price">$8</h3>
<button class="btn btn--primary ADD_TO_CART">Add to Cart</button>
</div>
</div>
<div class="product Pizza">
<img src="img/VeggiePizza.png" class="product__image">
<h5 class="product-title">Pizza Veggie</h5>
Pizza with vegetables
<div class="shop-item-details">
<h3 class="product__price">$8</h3>
<button class="btn btn--primary ADD_TO_CART">Add to Cart</button>
</div>
</div>
<div class="product Nuggets">
<img src="img/Nuggets.jpg" class="product__image">
<h5 class="product-title">Nuggets</h5>
Chicken Nuggets
<div class="shop-item-details">
<h3 class="product__price">$5</h3>
<button class="btn btn--primary ADD_TO_CART">Add to Cart</button>
</div>
</div>
</div>
</section>
</body>
</html>