-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboatclone.html
93 lines (68 loc) · 2.75 KB
/
boatclone.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project showcase </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="https://www.boat-lifestyle.com/cdn/shop/files/boAt_logo_small.svg?v=1682421543" alt="logo">
<!-- here, instead of image as logo, text can also be used but logo looks more attractive -->
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Cart</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<div class="product-card">
<img src="https://cdn.shopify.com/s/files/1/0057/8938/4802/files/IM_171.jpg?v=1689670793" alt="Immortal 171">
<h2>Immortal 171</h2>
<p>Wireless Gaming Earbuds<br><br>Rs. 1299 </p>
<button><a href="#" class="no-underline-link"> Buy now </a></button><br>
<button><a href="#" class="no-underline-link"> Add to cart</a></button>
</div>
<div class="product-card">
<img src="https://cdn.shopify.com/s/files/1/0057/8938/4802/files/boAt-Rockerz-330-Pro.jpg?v=1682579854" alt="Rockerz 330 pro">
<h2>Rockerz 330 pro</h2>
<p>Behind the neck / Neckband <br> <br>Rs. 1699</p>
<button><a href="#" class="no-underline-link"> Buy now</a> </button><br>
<button><a href="#" class="no-underline-link"> Add to cart</a></button>
</div>
<div class="product-card">
<img
src="https://cdn.shopify.com/s/files/1/0057/8938/4802/files/boAt-Rockerz-400_22a1ce75-9141-4a86-8765-ac1468496671.jpg?v=1682579854" alt="Rokerz 400">
<h2>Rokerz 400</h2>
<p>Over the ear headphone <br><br>Rs. 999 </p>
<button><a href="#" class="no-underline-link"> Buy now </a></button><br>
<button><a href="#" class="no-underline-link"> Add to cart</a></button>
</div>
</main>
<div class="sidebar">
<h2>Related links </h2>
<ul>
<li><a href="#">Filter</a></li>
<li><a href="#">Sort</a></li>
<li><a href="#">True wireless</a></li>
<li><a href="#">Wired headphpones </a></li>
<li><a href="#">Smart Watches</a></li>
<li><a href="#">Wireless Speakers </a></li>
<li><a href="#">Mobile Accessories</a></li>
<li><a href="#">Track Your Order</a></li>
<li><a href="#">Warranty & Support</a></li>
<li><a href="#">Return Policy</a></li>
<li><a href="#">Service Centers</a></li>
</ul>
</div>
<footer>
<p>© Boat clone Company. All rights reserved. 2023</p>
</footer>
</body>
</html>