-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (115 loc) · 4.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- font-awesome -->
<script src="https://kit.fontawesome.com/57c0bbe657.js"></script>
<!-- favicon link -->
<link rel="shortcut icon" type="image/ico" href="./images/favicon-connectdevelop1.ico">
<!-- main css link -->
<link rel="stylesheet" href="style.css">
<title>Fashion Furniture Collection</title>
</head>
<body>
<!-- navbar -->
<!-- ctrl i - to wrap this div with div -->
<nav class="navbar">
<div class="navbar-center">
<span class="nav-icon">
<i class="fas fa-bars"></i>
</span>
<h3 class="navLogo">Fashion<span class="navLogoSpan">Furniture</span></h3>
<div class="cart-btn">
<span class="nav-icon">
<i class="fas fa-cart-arrow-down"></i>
</span>
<div class="cart-items">0</div>
</div>
</div>
</nav>
<!-- end of navbar -->
<!-- Jumbo section starts -->
<header class="hero">
<div class="banner">
<h1 class="banner-title">furniture collection</h1>
<!-- button.banner-btn{shop now} -->
<a href="#product"><button class="banner-btn">shop now</button></a>
</div>
</header>
<!-- Jumbo section ends -->
<!-- PRODUCT SECTION -->
<a name="product"></a>
<section class="products">
<div class="section-title">
<h2>Our Products</h2>
</div>
<div class="products-center">
<!-- single product -->
<!-- <article class="product">
<div class="img-container">
<img src="./images/product-1.jpeg" alt="product" class="product-img">
<button class="bag-btn" data-id="1">
<i class="fas fa-shopping-cart"></i> add to bag
</button>
</div>
<h3>Queen Bed</h3>
<h4>$26,900</h4>
</article> -->
<!-- single product article ends -->
</div>
</section>
<!-- PRODUCT SECTION ends -->
<!-- CART starts -->
<div class="cart-overlay">
<div class="cart">
<span class="close-cart">
<i class="far fa-window-close"></i>
</span>
<h2>Your Cart</h2>
<!-- Cart content -->
<div class="cart-content">
<!-- cart Item -->
<!-- <div class="cart-item">
<img src="./images/product-1.jpeg" alt="product item">
<div>
<h4>Queen Bed</h4>
<h5>$26,900</h5>
<span class="remove-item">remove</span>
</div>
<div>
<i class="fas fa-chevron-up"></i>
<p class="item-amount">1</p>
<i class="fas fa-chevron-down"></i>
</div>
</div> -->
<!-- cart Item ends -->
</div>
<!-- Cart content ends -->
<!-- Cart footer -->
<div class="cart-footer">
<h3>Your total : $<span class="cart-total">0</span></h3>
<button class="clear-cart banner-btn">Clear Cart</button>
</div>
<!-- Cart footer ends -->
</div>
</div>
<!-- CART ends -->
<footer class="footer">
<h3>Contact Us</h3>
<p>fashionfurniture@gmail.com</p>
<p> <address>54 DOHS Baridhara, Bashundhara, Dhaka</address> </p>
<p>+880-1717171717</p>
<p>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fas fa-envelope"></i></a>
</p>
</footer>
<!-- contentful API link -->
<script src="https://cdn.jsdelivr.net/npm/contentful@latest/dist/contentful.browser.min.js"></script>
<!-- main script -->
<script src="script.js"></script>
</body>
</html>