-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
180 lines (174 loc) Β· 7.67 KB
/
index.html
File metadata and controls
180 lines (174 loc) Β· 7.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ruby Store - Home</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" class="active">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>
</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>
<!-- Hero Banner -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1>Welcome to Ruby Store</h1>
<p>Discover the finest collection of jewelry, accessories, and fashion items.</p>
<a href="shop.html" class="btn">Shop Now</a>
</div>
</div>
</section>
<!-- Categories Showcase -->
<section class="categories">
<div class="container">
<h2>Shop by Category</h2>
<div class="category-grid">
<div class="category-card">
<img src="images/products/ruby-ring.svg" alt="Rings">
<h3>Rings</h3>
</div>
<div class="category-card">
<img src="images/products/diamond-earrings.svg" alt="Earrings">
<h3>Earrings</h3>
</div>
<div class="category-card">
<img src="images/products/gold-necklace.svg" alt="Necklaces">
<h3>Necklaces</h3>
</div>
<div class="category-card">
<img src="images/products/silver-bracelet.svg" alt="Bracelets">
<h3>Bracelets</h3>
</div>
</div>
</div>
</section>
<!-- Featured Products -->
<section class="featured-products">
<div class="container">
<h2>Featured Products</h2>
<div class="product-grid">
<div class="product-card">
<div class="product-image">
<img src="images/products/ruby-ring.svg" alt="Ruby Ring">
<div class="product-actions">
<button class="add-to-cart"><i class="fas fa-shopping-cart"></i></button>
<button class="add-to-wishlist"><i class="fas fa-heart"></i></button>
</div>
</div>
<div class="product-info">
<h3>Ruby Ring</h3>
<p class="price">$199.99</p>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="images/products/diamond-earrings.svg" alt="Diamond Earrings">
<div class="product-actions">
<button class="add-to-cart"><i class="fas fa-shopping-cart"></i></button>
<button class="add-to-wishlist"><i class="fas fa-heart"></i></button>
</div>
</div>
<div class="product-info">
<h3>Diamond Earrings</h3>
<p class="price">$299.99</p>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="images/products/gold-necklace.svg" alt="Gold Necklace">
<div class="product-actions">
<button class="add-to-cart"><i class="fas fa-shopping-cart"></i></button>
<button class="add-to-wishlist"><i class="fas fa-heart"></i></button>
</div>
</div>
<div class="product-info">
<h3>Gold Necklace</h3>
<p class="price">$399.99</p>
</div>
</div>
<div class="product-card">
<div class="product-image">
<img src="images/products/silver-bracelet.svg" alt="Silver Bracelet">
<div class="product-actions">
<button class="add-to-cart"><i class="fas fa-shopping-cart"></i></button>
<button class="add-to-wishlist"><i class="fas fa-heart"></i></button>
</div>
</div>
<div class="product-info">
<h3>Silver Bracelet</h3>
<p class="price">$149.99</p>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="cta">
<div class="container">
<h2>Special Offer!</h2>
<p>Get 20% off on your first purchase. Use code: RUBY20</p>
<a href="shop.html" class="btn">Shop Now</a>
</div>
</section>
<!-- 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>
<script src="js/app.js"></script>
</body>
</html>