-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
126 lines (112 loc) · 4.68 KB
/
products.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ICYCO - PRODUCTS</title>
<!-- Custom Style Sheets -->
<link rel="stylesheet" href="styles/products.css">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/mediaQueries.css">
<link rel="stylesheet" href="styles/swiper-bundle.min.css">
<link rel="stylesheet" href="styles/topscrollindicator.css">
<!-- Favicon -->
<link rel="icon" href="./images/logo.png" type="image/png">
<!-- Font Awesome Icons Script -->
<script src="https://kit.fontawesome.com/c732ec9339.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Search Bar -->
<div class="search-container">
<input type="text" id="search-bar" placeholder="Search for flavors..." onkeypress="if(event.key === 'Enter') executeSearch()">
<button id="search-btn">Search</button>
</div>
<!-- Cursor Effects -->
<div class="circle"></div> <!-- Repeat circles as necessary -->
<!-- Preloader -->
<div id="preloader">
<div class="loader-container">
<!-- Add flavor circles here as needed -->
</div>
</div>
<!-- Scroll Progress Indicator -->
<div class="scroll-progress"></div>
<!-- Navigation Bar -->
<div class="nav-bar">
<div class="logo">
<img src="./images/logo.png" alt="icyco-logo" height="40px" width="40px">
<a href="#">IcyCo</a>
</div>
<div class="nav-links">
<a href="./index.html" class="link">home</a>
<a href="./products.html" class="link active">products</a>
<a href="./delivery.html" class="link">Delivery</a>
<a href="./dine-in.html" class="link">Dine In</a>
<a href="./catering.html" class="link">Catering</a>
</div>
<div class="icons">
<a href="./login.html"><i class="fa fa-user" aria-hidden="true"></i></a>
<span class="i"><i class="fa fa-shopping-cart cart-icon" aria-hidden="true"></i><span class="no-of-cart-items">0</span></span>
<i class="fa fa-bars menu" aria-hidden="true"></i>
</div>
</div>
<!-- Cart Section -->
<div class="cart">
<i class="fa fa-times close-cart" aria-hidden="true"></i>
<h1>Your Cart</h1>
<div class="no-empty-cart">
<ul class="cart-list-items"></ul>
<div>
<div class="total">Sub Total: <span class="sub-total">$0</span></div>
<button>Check out</button>
</div>
</div>
<div class="empty-cart active">
<p>No items in the cart!</p>
</div>
</div>
<!-- Products Section -->
<section class="products" id="products" style="margin-top: 100px;">
<h1>Our <span>Products</span></h1>
<div class="categories-wrapper" style="margin-bottom: 20px;"></div>
<div class="box-container products-box" style="margin-top: 40px;"></div>
</section>
<!-- Footer -->
<section class="footer">
<div class="footer-row">
<div class="footer-col">
<h4>Useful links</h4>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="./products.html">Products</a></li>
<li><a href="gallary.html">Gallery</a></li>
<li><a href="index.html#about">About Us</a></li>
<li><a href="./faq.html" class="link">FAQ</a></li>
<li><a href="contributor.html">Our Contributors</a></li>
<li><a href="blogs.html">Our Blogs</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms&condition.html">Terms&Condition</a></li>
</ul>
</div>
<!-- Add other footer columns as needed -->
</div>
</section>
<!-- Scroll to Top Button -->
<button class="scroll-button">
<img src="images/icecream-cone.png" alt="icecream-cone" />
</button>
<!-- Copyright -->
<div class="copyright">
© <span id="year"></span> by <span>DharshiB</span> | All Rights Reserved
</div>
<!-- Toaster -->
<div id="toast-container" class="toast-container"></div>
<!-- Scripts -->
<script src="https://unpkg.com/scrollreveal"></script>
<script type="module" src="script/products.js"></script>
<script type="module" src="script/nav.js"></script>
<script type="module" src="script/cart.js"></script>
<script src="script/topscrollindicator.js"></script>
<script src="script/cursor.js"></script>
</body>
</html>