-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (91 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Index Page</title>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/69ba4cb72d.js"></script>
<!-- css -->
<link rel="stylesheet" href="assets/main.css">
<!-- jQuery AJAX -->
<script type="text/JavaScript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
<body>
<!-- Nav Bar-->
<nav class="navbar">
<div class="navbar-center">
<span class="nav-icon">
<i class="fas fa-bars"></i>
</span>
<img src="images/logo.svg" alt="store logo" />
<div class="dropdown">
<span class="nav-icon">
<button class="dropbtn">
<i class="fas fa-user"></i>
</button>
</span>
<ul class="dropdown-menu">
<li><a href="login.php">Login</a></li>
<li><a href="#">Log Out</a> </li>
</ul>
</div>
<div class="cart-btn">
<span class="nav-icon">
<i class="fas fa-cart-plus"></i>
</span>
<div class="cart-items">0</div>
</div>
</div>
</nav>
<!-- End of Nav Bar-->
<!-- hero -->
<header class="hero">
<div class="banner">
<h1 class="banner-title">Furniture collection</h1>
<button class="banner-btn">Shop Now</button>
</div>
</header>
<!-- End of Hero -->
<!-- Products -->
<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 fs-shopping-cart">-->
<!--Add to bag-->
<!--</i>-->
<!--</button>-->
<!--</div>-->
<!--<h3>Queen bed</h3>-->
<!--<h4>$16</h4>-->
<!--</article>-->
<!--<!– End of Single Product–>-->
</div>
</section>
<!-- End of Products-->
<!-- Cart -->
<div class="cart-overlay">
<div class="cart">
<span class="close-cart">
<i class="fas fa-window-close">
</i>
</span>
<h2>Your Cart</h2>
<div class="cart-content">
</div>
<div class="cart-footer">
<h3>Your Total : $ <span class="cart-total">0</span></h3>
<button class="close-cart banner-btn>">Clear Cart</button>
</div>
</div>
</div>
<!-- End of Cart -->
<script src="js/app.js"></script>
</body>
</html>