-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshop.html
More file actions
123 lines (117 loc) Β· 4.93 KB
/
shop.html
File metadata and controls
123 lines (117 loc) Β· 4.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ruby Store - Shop</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Header with Navigation -->
<header>
<div class="container">
<div class="logo">
<h2>Ruby Store</h2>
</div>
<nav>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html" class="active">Shop</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="header-icons">
<a href="wishlist.html"><i class="fas fa-heart"></i></a>
<a href="cart.html"><i class="fas fa-shopping-cart"></i></a>
<div class="hamburger">
<i class="fas fa-bars"></i>
</div>
</div>
</div>
</header>
<!-- Shop Header -->
<section class="shop-header">
<div class="container">
<h1>Our Products</h1>
<div class="search-bar">
<input type="text" id="search-input" placeholder="Search products...">
<button><i class="fas fa-search"></i></button>
</div>
<div class="filters">
<select class="filter-select" id="category-filter">
<option value="all">All Categories</option>
<option value="rings">Rings</option>
<option value="earrings">Earrings</option>
<option value="necklaces">Necklaces</option>
<option value="bracelets">Bracelets</option>
</select>
<select class="filter-select" id="price-filter">
<option value="all">All Prices</option>
<option value="0-100">Under $100</option>
<option value="100-200">$100 - $200</option>
<option value="200-300">$200 - $300</option>
<option value="300+">Over $300</option>
</select>
</div>
</div>
</section>
<!-- Product Grid -->
<section class="featured-products">
<div class="container">
<div class="product-grid" id="product-grid">
<!-- Products will be loaded here by JavaScript -->
</div>
</div>
</section>
<!-- Pagination -->
<div class="container">
<div class="pagination" id="pagination">
<!-- Pagination buttons will be loaded here by JavaScript -->
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>About Ruby Store</h3>
<p>Premium jewelry and accessories for every occasion. Quality craftsmanship and timeless designs.</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-pinterest"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p><i class="fas fa-map-marker-alt"></i> 123 Jewelry Street, New York</p>
<p><i class="fas fa-phone"></i> +1 (123) 456-7890</p>
<p><i class="fas fa-envelope"></i> info@rubystore.com</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Ruby Store. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Loading Spinner -->
<div class="loading-spinner" id="loading-spinner">
<div class="spinner"></div>
</div>
<script src="js/app.js"></script>
<script src="js/shop.js"></script>
</body>
</html>