-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts-page-2.html
72 lines (69 loc) · 3.21 KB
/
products-page-2.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
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="logo.jfif" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<title>Products - Page 2</title>
</head>
<body>
<header>
<div>
<a href="index.html" style="text-decoration: none; color: inherit;">
<img src="logo.jfif" style="width: 25px; height: 25px;"/> Sneakers
</a>
</div>
<nav>
<ul>
<li><a href="index.html" target="_top">Home</a></li>
<li><a href="features.html" target="_top">Features</a></li>
<li><a href="products-page-1.html" target="_top">Products</a></li>
<li><a href="contact.html" target="_top">Contact</a></li>
<li><a href="cart.html" target="_top">Cart (<span id="cart-count">0</span>)</a></li>
</ul>
</nav>
</header>
<section id="products" class="products-section">
<h2>Our Products </h2>
<div class="products-container">
<div class="product-item">
<img src="images/pic4.jfif" alt="Sneakers">
<h2>Off-White Sneakers</h2>
<p>Rs. 3500</p>
<button class="add-to-cart-btn" data-id="5" data-name="Off-White Sneakers" data-price="3500">Add to Cart</button>
<a href="cart.html?productId=5&action=buyNow" class="btn buy-now-btn">Buy Now</a>
</div>
<div class="product-item">
<img src="images/pic5.jfif" alt="Sneakers">
<h2>Black & Off-White Sneakers</h2>
<p>Rs. 3300</p>
<button class="add-to-cart-btn" data-id="6" data-name="Black & Off-White Sneakers" data-price="3300">Add to Cart</button>
<a href="cart.html?productId=6&action=buyNow" class="btn buy-now-btn">Buy Now</a>
</div>
<div class="product-item">
<img src="images/pic6.jfif" alt="Sneakers">
<h2>White Sneakers</h2>
<p>Rs. 3300</p>
<button class="add-to-cart-btn" data-id="7" data-name="White Sneakers" data-price="3300">Add to Cart</button>
<a href="cart.html?productId=7&action=buyNow" class="btn buy-now-btn">Buy Now</a>
</div>
<div class="product-item">
<img src="images/pic7.jfif" alt="Sneakers">
<h2>White & Green Sneakers</h2>
<p>Rs. 3400</p>
<button class="add-to-cart-btn" data-id="8" data-name="White & Green Sneakers" data-price="3400">Add to Cart</button>
<a href="cart.html?productId=8&action=buyNow" class="btn buy-now-btn">Buy Now</a>
</div>
</div>
<!-- "See More" link to page 3 -->
<div class="see-more">
<a href="products-page-3.html" class="btn">See More </a>
</div>
</section>
<footer>
<iframe src="footer.html" style="border:none; width: 100%; height: 107px;"></iframe>
</footer>
<script src="cart.js"></script>
</body>
</html>