-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct1.html
More file actions
44 lines (41 loc) · 1.5 KB
/
product1.html
File metadata and controls
44 lines (41 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Document</title>
</head>
<body>
<header>
<a href="index.html"><img src="img/logo.jpg"></a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-us.html">About Us</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="review.html">Reviews</a></li>
</ul>
</nav>
</header>
<main>
<article>
<section class="product">
<img src="img/Bottle_img.png" alt="Product 1" >
<h2>Eco Friendly Reusable Water Bottle</h2>
<p>Our Eco-Friendly Reusable Water Bottle is a testament to conscious craftsmanship. Sourced from premium stainless steel, each bottle tells a story of sustainable elegance. Expertly shaped by local artisans, it's more than a bottle; it's a commitment to a greener tomorrow. Join us in sipping responsibly and be part of the journey toward a sustainable future.</p>
</section>
</article>
<section class="product-price">
<p>€15 </p>
<p><a href="Cart">BUY NOW</a></p>
</section>
</main>
<footer>
<hr>
<p>Ecopulse 2023</p>
<p>Learn more <a href="about-us.html">about us</a>.</p>
</footer>
</body>
</html>