<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boon Pharma Corp.</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fff;
color: #333;
}
header {
background-color: #d71920;
color: white;
padding: 20px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #0033a0;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
}
.hero {
background: url('your-image.jpg') no-repeat center center/cover;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
}
.section {
padding: 50px;
text-align: center;
}
.footer {
background-color: #d71920;
color: white;
text-align: center;
padding: 20px;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Boon Pharma Corp.</h1>
</header>
<nav>
<a href="#about">About Us</a>
<a href="#products">Products & Services</a>
<a href="#clients">Clients & Partners</a>
<a href="#contact">Contact Us</a>
</nav>
<div class="hero">
<h2>Your Trusted Partner for Quality Generic Medicines & Hospital Supplies</h2>
</div>
<div class="section" id="about">
<h2>About Us</h2>
<p>Boon Pharma Corp. is a leading provider of generic medicines and hospital supplies, serving drugstores, hospitals, doctors, and local government units.</p>
</div>
<div class="section" id="products">
<h2>Our Products & Services</h2>
<p>We offer a wide range of generic medicines, hospital equipment, and pharmaceutical distribution services.</p>
</div>
<div class="section" id="clients">
<h2>Clients & Partners</h2>
<p>We are trusted by hospitals, pharmacies, and government agencies across the region.</p>
</div>
<div class="section" id="contact">
<h2>Contact Us</h2>
<p>Email: info@boonpharma.com | Phone: (123) 456-7890</p>
</div>
<div class="footer">
<p>© 2025 Boon Pharma Corp. All Rights Reserved.</p>
</div>
</body>
</html>