-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
70 lines (66 loc) · 2.41 KB
/
product.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Details - Golhars</title>
<link rel="stylesheet" href="product.css">
</head>
<body>
<header class="navbar">
<div class="container">
<h1 class="logo">
<a href="index.html" class="logo-link">
<img src="assets/logo.png" alt="Golhars Logo" class="logo-img">
</a>
</h1>
<nav>
<ul class="nav-links">
<li><a href="index.html" class="hover">Home</a></li>
<li><a href="paintings.html" class="hover">Paintings</a></li>
<li><a href="crochet.html" class="hover">Crochet</a></li>
<li><a href="customize.html" class="hover">Customize</a></li>
<li><a href="cart.html" class="hover">Cart</a></li>
<li><a href="faq.html" class="hover">FAQ</a></li>
<li><a href="contact.html" class="hover">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="product-details">
<div class="container">
<div class="product-image">
<img src="assets/Painting 3.jpeg" alt="Product Image">
</div>
<div class="product-info">
<h1 class="product-title">Ship and the Sea</h1>
<p class="product-description">
This is a stunning abstract painting created using vibrant colors and bold strokes. It adds elegance and creativity to any room.
</p>
<p class="product-price"><strong>Price:</strong> $100</p>
<p class="product-availability"><strong>Availability:</strong> In Stock</p>
<div class="product-actions">
<button class="item-btn">Add to Cart</button>
<button class="buy-now-btn">Buy Now</button>
</div>
<div class="product-meta">
<p><strong>Category:</strong> Paintings</p>
<p><strong>Sub-category:</strong> Documentaries</p>
<p><strong>SKU:</strong> ABC12345</p>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container3">
<p>© 2024 Golhars</p>
<div class="social-links">
<a href="#" class="hover">Facebook</a>
<a href="#" class="hover">Instagram</a>
<a href="#" class="hover">Pinterest</a>
</div>
</div>
</footer>
<script src="product.js"></script>
</body>
</html>