-
Notifications
You must be signed in to change notification settings - Fork 0
/
ShoppingCart.html
51 lines (45 loc) · 1.86 KB
/
ShoppingCart.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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="css/style1.css"/>
<title>MyCart</title>
</head>
<body>
<header class="header">
<a href="#" class="logo"><i class="fas fa-utensils"></i> Bistro </a>
<nav class="navbar">
<a href="index.html">home</a>
<a href="./index.html">about</a>
<a href="index.html">popular</a>
<a href="index.html">menu</a>
<a href="index.html">order</a>
<a href="index.html">blogs</a>
</nav>
<div class="icons">;
<div id="menu-btn" class="fas fa-bars"></div>
<!-- <div id="search-btn" class="fas fa-search"></div> -->
<a href="./ShoppingCart.html"><div id="cart-btn" class="fas fa-shopping-cart"></div></a>
<div id="login-btn" class="fas fa-user"></div>
</div>
</header>
<section class="container content-section">
<h2 class="section-header" style="margin-top:120px;">My Bistro Cart</h2>
<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>
</body>
</html>