-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.63 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4M FOODS - Nutrition Products</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>4M FOODS</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#products">Our Product</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home">
<h2>Welcome to 4M FOODS</h2>
<p>Introducing our nutrition-packed product: <strong>HEALTH NUT THE NUTRI MIX</strong>, designed to fuel your body with essential nutrients.</p>
<img src="nutri-mix.jpg" alt="Health Nut The Nutri Mix">
</section>
<section id="about">
<h2>About Us</h2>
<p>4M FOODS is dedicated to providing top-quality nutrition products for a healthier lifestyle. We focus on purity, quality, and taste.</p>
</section>
<section id="products">
<h2>Our Product</h2>
<div class="product">
<h3>HEALTH NUT THE NUTRI MIX</h3>
<p>A nutrient-dense mix for energy and wellness. Perfect for any time of the day.</p>
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>Email: [email protected]</p>
<p>Phone: +91 7034659735</p>
</section>
<footer>
<p>© 2024 4M FOODS. All rights reserved.</p>
</footer>
</body>
</html>