-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
83 lines (83 loc) · 2.73 KB
/
product.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Product | Comfy</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- font-awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap"
rel="stylesheet"
/>
<!-- styles -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<body>
<nav class="navbar">
<ul class="dark-nav-links">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="products.html">Products</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
<button id="menu-toggle">
<i class="fas fa-bars"></i>
</button>
<div class="modal-menu-overlay">
<div id="modal-menu">
<ul class="modal-links">
<li>
<a href="index.html"><i class="fas fa-home fa-fw"></i> Home</a>
</li>
<li>
<a href="products.html"
><i class="fas fa-couch fa-fw"></i> Products</a
>
</li>
<li>
<a href="about.html"><i class="fas fa-book fa-fw"></i> About</a>
</li>
</ul>
<button id="modal-close"><i class="fas fa-times"></i></button>
</div>
</div>
<img src="assets/logo-black.svg" alt="comfy logo" />
<div class="cart-container">
<button class="cart"><i class="fas fa-shopping-cart"></i></button>
<span class="cart-count">0</span>
</div>
<div class="cart-modal-overlay">
<div id="cart-modal">
<button id="cart-close"><i class="fas fa-times"></i></button>
<h3>Your Bag</h3>
<div class="cart-items"></div>
<section class="checkout">
<h3 id="total">Total <span class="total-price">$0.00</span></h3>
<button class="primary-btn checkout-btn">Checkout</button>
</section>
</div>
</div>
</nav>
<section class="route-hero">
<h2 id="breadcrumb">Home / Product</h2>
</section>
<main id="single-product"></main>
<script type="module" src="/src/pages/product.js"></script>
</body>
</body>
</html>