Home
Home
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple E-commerce Site</title>d
<link rel="stylesheet" type="text/css" herf="css/style.css" />
</head>
<body>
<header>
<h1>My E-commerce Store</h1>
<nav>
<ul>
<li><a href="#products">Products</a></li>
<li><a href="#cart">Shopping Cart</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<section id="products">
<h2>Featured Products</h2>
<div class="product">
<h3>Product 1</h3>
<p>samsung a34.</p>
<p>Price: $12000.00</p>
<button>Add to Cart</button>
</div>
<div class="product">
<h3>Product 2</h3>
<p>redmi 12 5g phone.</p>
<p>Price: $15000.00</p>
<button>Add to Cart</button>
</div>
<div class="product">
<h3>Product 2</h3>
<p>redmi iphone 16 pro</p>
<p>Price: $150000.00</p>
<button>Add to Cart</button>
</div>
<!-- Add more products as needed -->
</section>
<section id="cart">
<h2>Your Shopping Cart</h2>
<p>No items in cart.</p>
<!-- Add functionality to display cart items -->
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>copntuct us for better expreance at lamarinstoregmail.com.</p>
</footer>
</body>
</html>