|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + |
| 5 | +<meta charset="UTF-8"> |
| 6 | +<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + |
| 8 | +<title>Wishlist | BABA TECH HUB</title> |
| 9 | + |
| 10 | +<link rel="stylesheet" href="css/style.css"> |
| 11 | +<link rel="stylesheet" href="css/responsive.css"> |
| 12 | + |
| 13 | +<link rel="stylesheet" |
| 14 | +href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"> |
| 15 | + |
| 16 | +</head> |
| 17 | + |
| 18 | +<body> |
| 19 | + |
| 20 | +<header> |
| 21 | + |
| 22 | +<nav class="navbar"> |
| 23 | + |
| 24 | +<div class="logo"> |
| 25 | +<h2>BABA <span>TECH HUB</span></h2> |
| 26 | +</div> |
| 27 | + |
| 28 | +<ul class="nav-links"> |
| 29 | + |
| 30 | +<li><a href="index.html">Home</a></li> |
| 31 | +<li><a href="products.html">Products</a></li> |
| 32 | +<li><a href="services.html">Services</a></li> |
| 33 | +<li><a href="about.html">About</a></li> |
| 34 | +<li><a href="contact.html">Contact</a></li> |
| 35 | + |
| 36 | +</ul> |
| 37 | + |
| 38 | +</nav> |
| 39 | + |
| 40 | +</header> |
| 41 | + |
| 42 | +<section class="wishlist-page"> |
| 43 | + |
| 44 | +<div class="section-title"> |
| 45 | + |
| 46 | +<h2>My Wishlist ❤️</h2> |
| 47 | + |
| 48 | +<p>Your Favourite Products</p> |
| 49 | + |
| 50 | +</div> |
| 51 | + |
| 52 | +<div class="products-grid"> |
| 53 | + |
| 54 | +<div class="product-card"> |
| 55 | + |
| 56 | +<span class="badge">Favourite</span> |
| 57 | + |
| 58 | +<img src="images/laptops/dell.jpg"> |
| 59 | + |
| 60 | +<h3>Dell Latitude 7420</h3> |
| 61 | + |
| 62 | +<p class="price"> |
| 63 | + |
| 64 | +₹28,999 |
| 65 | + |
| 66 | +</p> |
| 67 | + |
| 68 | +<div class="rating"> |
| 69 | + |
| 70 | +★★★★★ |
| 71 | + |
| 72 | +</div> |
| 73 | + |
| 74 | +<div class="product-buttons"> |
| 75 | + |
| 76 | +<a href="cart.html" class="buy-btn"> |
| 77 | + |
| 78 | +Move to Cart |
| 79 | + |
| 80 | +</a> |
| 81 | + |
| 82 | +<a href="#" class="cart-btn"> |
| 83 | + |
| 84 | +<i class="fa-solid fa-trash"></i> |
| 85 | + |
| 86 | +</a> |
| 87 | + |
| 88 | +</div> |
| 89 | + |
| 90 | +</div> |
| 91 | + |
| 92 | +<div class="product-card"> |
| 93 | + |
| 94 | +<span class="badge">Favourite</span> |
| 95 | + |
| 96 | +<img src="images/mobiles/iphone13.jpg"> |
| 97 | + |
| 98 | +<h3>Apple iPhone 13</h3> |
| 99 | + |
| 100 | +<p class="price"> |
| 101 | + |
| 102 | +₹35,999 |
| 103 | + |
| 104 | +</p> |
| 105 | + |
| 106 | +<div class="rating"> |
| 107 | + |
| 108 | +★★★★★ |
| 109 | + |
| 110 | +</div> |
| 111 | + |
| 112 | +<div class="product-buttons"> |
| 113 | + |
| 114 | +<a href="cart.html" class="buy-btn"> |
| 115 | + |
| 116 | +Move to Cart |
| 117 | + |
| 118 | +</a> |
| 119 | + |
| 120 | +<a href="#" class="cart-btn"> |
| 121 | + |
| 122 | +<i class="fa-solid fa-trash"></i> |
| 123 | + |
| 124 | +</a> |
| 125 | + |
| 126 | +</div> |
| 127 | + |
| 128 | +</div> |
| 129 | + |
| 130 | +</div> |
| 131 | + |
| 132 | +</section> |
| 133 | + |
| 134 | +<footer> |
| 135 | + |
| 136 | +<div class="footer-bottom"> |
| 137 | + |
| 138 | +© 2026 BABA TECH HUB |
| 139 | + |
| 140 | +</div> |
| 141 | + |
| 142 | +</footer> |
| 143 | + |
| 144 | +<script src="js/script.js"></script> |
| 145 | + |
| 146 | +</body> |
| 147 | + |
| 148 | +</html> |
0 commit comments