-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
138 lines (130 loc) Β· 6.26 KB
/
product.html
File metadata and controls
138 lines (130 loc) Β· 6.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ruby Store - Product Detail</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>
<!-- Product Detail -->
<section class="product-detail">
<div class="container">
<div class="product-container">
<div class="product-images">
<div class="main-image">
<img id="main-image" src="images/products/ruby-ring.svg" alt="Product Image">
</div>
<div class="thumbnail-images" id="thumbnail-images">
<!-- Thumbnails will be loaded here by JavaScript -->
</div>
</div>
<div class="product-details">
<h1 id="product-title">Product Name</h1>
<p class="price" id="product-price">$0.00</p>
<p class="description" id="product-description">Product description will appear here.</p>
<div class="quantity-selector">
<label for="quantity">Quantity:</label>
<button class="quantity-btn" id="decrease-quantity">-</button>
<input type="number" id="quantity" class="quantity-input" value="1" min="1">
<button class="quantity-btn" id="increase-quantity">+</button>
</div>
<div class="action-buttons">
<button class="btn" id="add-to-cart">Add to Cart</button>
<button class="btn" id="add-to-wishlist" style="background: #333;">Add to Wishlist</button>
</div>
</div>
</div>
<!-- Reviews Section -->
<div class="reviews">
<h2>Customer Reviews</h2>
<div class="review-form">
<h3>Write a Review</h3>
<input type="text" id="review-name" placeholder="Your Name" style="width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ddd; border-radius: 5px;">
<div class="rating">
<p>Rating:</p>
<div id="star-rating">
<span class="star" data-rating="1">★</span>
<span class="star" data-rating="2">★</span>
<span class="star" data-rating="3">★</span>
<span class="star" data-rating="4">★</span>
<span class="star" data-rating="5">★</span>
</div>
</div>
<textarea id="review-text" placeholder="Write your review here..."></textarea>
<button class="btn" id="submit-review" style="background: #333;">Submit Review</button>
</div>
<div class="review-list" id="review-list">
<!-- Reviews will be loaded here by JavaScript -->
</div>
</div>
</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>
<!-- Loading Spinner -->
<div class="loading-spinner" id="loading-spinner">
<div class="spinner"></div>
</div>
<script src="js/app.js"></script>
<script src="js/product.js"></script>
</body>
</html>