-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
executable file
·59 lines (50 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Bebas Neue' rel='stylesheet'>
<title>Product Details</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<nav class="navbar">
<div class="logo"><a href="index.html" style="text-decoration: none;color:white;">
<p style="font-family: 'Bebas Neue';">Craftique</p>
</a></div>
<div class="nav-items">
<div class="category-list">
<a href="blog.html" class="category-item">Blog</a>
<a href="tutorial-vid.html" class="category-item">Tutorial</a>
</div>
<input type="text" class="search-bar" placeholder="Search...">
<a href="watchlist.html" class="nav-link">Watchlist</a>
<a href="orders.html" class="nav-link">Orders</a>
<a href="cart.html" class="nav-link">Cart</a>
<a href="profile.html" class="nav-link">Profile</a>
</div>
</nav>
<section class="product-details">
<h2>Product 1</h2>
<div class="details-container">
<img src="img/product.jpg" alt="Product Image" class="product-image">
<div class="product-info">
<h3>Product Name: <span>Man Made Pot</span></h3>
<p><strong>Price:</strong> ₹799.99</p>
<p><strong>Stock Quantity:</strong> 45 units</p>
<p><strong>Description:</strong> This beautifully handcrafted terracotta pot adds a rustic charm to any
space. Made with natural clay, it's perfect for indoor plants or outdoor gardens. Its hand-painted
design makes each piece unique, blending art with functionality. Ideal for succulents, herbs, or
small flowers. Durable, eco-friendly, and stylish..
</p>
<p><strong>Category:</strong> Pottery</p>
<p class="price">₹19.99</p>
<p class="description">This is an amazing product that will improve your life in many ways. It's made
with high-quality materials and offers great value for the price.</p>
<button class="add-to-cart">Add to Cart</button>
</div>
</div>
</section>
</body>
</html>