forked from janavipandole/Cara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshop.html
More file actions
195 lines (170 loc) · 8.04 KB
/
Copy pathshop.html
File metadata and controls
195 lines (170 loc) · 8.04 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Character Encoding -->
<meta charset="UTF-8">
<!-- Viewport for Responsive Design -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Page Title -->
<title>Cara — Modern E‑Commerce</title>
<!-- Favicon -->
<link rel="icon" type="image/jpg" sizes="32x32" href="images/favicon.jpg">
<!-- SEO Meta Tags -->
<meta name="description"
content="Shop the latest trends on our e-commerce store. Dark theme supported for a better user experience.">
<meta name="keywords" content="e-commerce, shopping, online store, dark mode, buy online, latest fashion">
<meta name="author" content=" Cara">
<meta name="robots" content="index, follow">
<!-- Language -->
<meta http-equiv="Content-Language" content="en">
<!-- Open Graph (OG) Tags for Social Sharing -->
<meta property="og:title" content="E-commerce - Dark Theme Working">
<meta property="og:description" content="Shop the latest trends with our dark mode-enabled e-commerce experience.">
<meta property="og:image" content="https://example.com/images/preview.jpg">
<meta property="og:url" content="https://example.com/">
<meta property="og:type" content="website">
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="E-commerce - Dark Theme Working">
<meta name="twitter:description" content="Dark theme e-commerce site with modern features.">
<meta name="twitter:image" content="https://example.com/images/preview.jpg">
<meta name="twitter:site" content="@janavipandole">
<!-- Theme Color for Mobile Browser -->
<meta name="theme-color" content="#000000">
<!-- Stylesheets -->
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<section id="header">
<a href="index.html"><img src="images/logo.png" alt=""></a>
<div>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a class="active" href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="cart.html" id="lg-bag" class="cart-icon-wrapper"><i class="ri-shopping-bag-4-line"></i><span class="cart-count" id="desktopCartCount">0</span></a></li>
<li>
<button class="theme-toggle" id="themeToggle" aria-label="Toggle dark mode">
<i class="ri-moon-line" id="themeIcon"></i>
</button>
</li>
<a href="#" id="close"><i class="fa-solid fa-xmark"></i></a>
</ul>
</div>
<div class="mobile">
<button class="theme-toggle" id="themeToggleMobile" aria-label="Toggle dark mode">
<i class="ri-moon-line" id="themeIconMobile"></i>
</button>
<a href="cart.html" id="mobile-cart-icon">
<i class="ri-shopping-bag-4-line"></i>
<span class="cart-count" id="mobileCartCount">0</span>
</a>
<i class="fas fa-outdent" id="bar"></i>
</div>
</section>
<section id="shop-hero">
<h2>#stayhome</h2>
<p>Save more with coupons & up to 70% off!</p>
</section>
<!-- Search and Filter Section -->
<section id="search-filter" class="section-p1">
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search products..." />
<button id="searchBtn" aria-label="Search">
<i class="ri-search-line"></i>
</button>
</div>
<div class="filter-container">
<label for="categoryFilter">Filter by Category:</label>
<select id="categoryFilter">
<option value="all">All Products</option>
<option value="street">Street Style</option>
<option value="minimal">Minimal</option>
<option value="formal">Formal</option>
</select>
</div>
</section>
<section id="product1" class="section-p1">
<div class="pro-container">
<!-- dynamic Js {csritik-max}-->
<div class="pro-container" id="shop-container"></div>
</section>
<section id="newsletter" class="section-p1 section-m1">
<div class="newstext">
<h4>Sign Up For Newsletters</h4>
<p>Get E-mail updates about our latest shop and <span>special offers.</span></p>
</div>
<div class="form">
<input type="text" placeholder="Your email address">
<button class="normal">Sign Up</button>
</div>
</section>
<!-- Back to Top and Scroll to Bottom Buttons -->
<button id="backToTop" title="Back to Top" aria-label="Back to top">⬆</button>
<button id="Toptoback" title="Top To Back" aria-label="Scroll to bottom">⬇</button>
<footer class="section-p1">
<div class="col">
<img class="logo" src="images/logo.png" alt="">
<h4>Contact</h4>
<p><strong>Address:</strong> 562 Wellington Road, Street 32, San Francisco</p>
<p><strong>Phone:</strong> +01 2222 365 /(+91) 01 2345 6789</p>
<p><strong>Hours:</strong> 10:00 - 18:00, Mon - Sat</p>
<div class="follow">
<h4>Follow us</h4>
<div class="icon">
<a href="https://x.com/JanaviPandole"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/janavipandole"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/janavi-pandole-80a7b2290" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://www.youtube.com/@JanaviPandole"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
<div class="col">
<h4>About</h4>
<a href="about.html">About us</a>
<a href="#">Delivery Information</a>
<a href="privacy.html">Privacy Policy</a>
<a href="./terms.html">Terms and Conditions</a>
<a href="contact.html">Contact Us</a>
</div>
<div class="col">
<h4>My Account</h4>
<a href="login.html">Sign In</a>
<a href="cart.html">View Cart</a>
<a href="#">My Wishlist</a>
<a href="cart.html">Track My Order</a>
<a href="contact.html">Help</a>
</div>
<div class="col install">
<h4>Install App</h4>
<p>From App Store or Google Play</p>
<div class="row">
<img src="images/pay/app.jpg" alt="">
<img src="images/pay/play.jpg" alt="">
</div>
<p>Secured Payment Gateways</p>
<img src="images/pay/pay.png" alt="">
</div>
<div class="copyright">
<p> © Cara 2025. All rights reserved. | <a href="license.html" style="color: #088178;">MIT License</a>
</p>
</div>
</footer>
<script src="products.js"></script>
<script src="app.js"></script>
<!-- csritik-max -->
<div class="toast" id="toast">
<div class="toast-icon" id="toast-icon">✅</div>
<span id="toast-msg"></span>
</div>
</body>
</html>