Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Warehouse Solutions</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}

nav {
background-color: #444;
color: #fff;
text-align: center;
padding: 0.5em 0;
}

nav a {
color: #fff;
text-decoration: none;
padding: 1em;
margin: 0 1em;
display: inline-block;
}

section {
padding: 2em;
}

footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Your Warehouse Solutions</h1>
</header>

<nav>
<a href="#about">About Us</a>
<a href="#services">Services</a>
<a href="#contact">Contact</a>
</nav>

<section id="about">
<h2>About Us</h2>
<p>Welcome to Your Warehouse Solutions, your partner in optimizing
warehouse and inventory management. With years of expertise, we provide tailored
solutions to enhance your business operations.</p>
</section>

<section id="services">
<h2>Services</h2>
<p>Explore our range of services designed to meet your warehouse and
inventory needs:</p>
<ul>
<li>Inventory Management</li>
<li>Warehouse Design and Layout</li>
<li>Supply Chain Optimization</li>
<li>Technology Integration</li>
<!-- Add more services as needed -->
</ul>
</section>

<section id="contact">
<h2>Contact Us</h2>
<p>Ready to elevate your warehouse and inventory management? Contact us
today:</p>
<p>Email: info@yourwarehousesolutions.com</p>
<p>Phone: (123) 456-7890</p>
</section>

<footer>
<p>&copy; 2024 Your Warehouse Solutions. All rights reserved.</p>
</footer>
</body>
</html>

You might also like