This repository was archived by the owner on Apr 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
57 lines (45 loc) · 1.7 KB
/
Copy pathproduct.html
File metadata and controls
57 lines (45 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Product</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/product.css">
</head>
<body>
<nav class="navbar" id="navbar">
</nav>
<div class="hero" style="background-image: url(assets/img/8.jpeg);">
<div class="overlay"></div>
<div class="herocontent">
<h1 class="herotitle">Discover Our Collection</h1>
<p class="herosub">Browse products curated specially for you.</p>
</div>
</div>
<!-- JS WILL INSERT CONTENT HERE -->
<div class="product-section">
<div class="product-left">
<img src="assets/img/1.avif" alt="Product Image">
</div>
<div class="product-right">
<h1 class="product-title">Product Name</h1>
<p class="product-category">Category: men</p>
<h2 class="product-price">₹999</h2>
<p class="product-desc">
This is a sample product description. JavaScript will replace this text later.
</p>
<div class="product-buttons">
<button class="btn-buy">Buy Now</button>
<button class="btn-cart">Add to Cart</button>
</div>
</div>
</div>
<div class="footer" id="footer">
</div>
<script type="module" src="js/product.js"></script>
<script type="module" src="js/global.js"></script>
</body>
</html>