<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Damico Group of Companies</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background: #333;
color: white;
padding: 1rem;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background: #444;
padding: 0.5rem;
}
nav a {
color: white;
text-decoration: none;
margin: 0 1rem;
}
nav a:hover {
text-decoration: underline;
}
.container {
padding: 1rem;
max-width: 1200px;
margin: 0 auto;
}
section {
margin: 2rem 0;
}
footer {
text-align: center;
background: #333;
color: white;
padding: 1rem;
margin-top: 2rem;
}
</style>
</head>
<body>
<header>
<h1>Damico Group of Companies</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="knowledge-base.html">Knowledge Base</a>
<a href="media.html">News & Media</a>
<a href="products.html">Refined Products</a>
<a href="countries.html">Countries</a>
</nav>
<div class="container">
<section id="home">
<h2>Welcome to Damico Group</h2>
<p>Building a powerful future together with integrity and excellence.</p>
</section>
<section id="about">
<h2>About Us</h2>
<ul>
<li><a href="about/services/refining.html">Blending & Refining</a></li>
<li><a href="about/services/bunkering.html">Bunkering</a></li>
<li><a href="about/services/storage.html">Storage & Shipping</a></li>
<li><a href="about/services/trading.html">Trading Operations</a></li>
</ul>
</section>
<section id="knowledge-base">
<h2>Knowledge Base</h2>
<ul>
<li><a href="library/registration.html">Registration</a></li>
<li><a href="library/form-downloads.html">Form & Downloads</a></li>
<li><a href="library/verification.html">Verification</a></li>
<li><a href="library/contact.html">Contact Us</a></li>
</ul>
</section>
<section id="news-media">
<h2>News & Media</h2>
<p>Stay updated with the latest developments from Damico Group.</p>
<a href="media.html">Explore Media</a>
</section>
<section id="refined-products">
<h2>Refined Products</h2>
<p>Discover our range of refined products:</p>
<ul>
<li><a href="products/crude-oil.html">Crude Oil</a></li>
<li><a href="products/gas-oil.html">Gas Oil</a></li>
<li><a href="products/gasoline.html">Gasoline</a></li>
<li><a href="products/damilube.html">Damilube</a></li>
<li><a href="products/jetfuel.html">Jet Fuel</a></li>
</ul>
</section>
<section id="countries">
<h2>Business Units</h2>
<ul>
<li><a href="https://sg.damico.ae" target="_blank">Singapore</a></li>
<li><a href="https://in.damico.ae" target="_blank">India</a></li>
<li><a href="https://uae.damico.ae" target="_blank">UAE</a></li>
<li><a href="https://gh.damico.ae" target="_blank">Ghana</a></li>
<li><a href="https://usa.damico.ae" target="_blank">USA</a></li>
</ul>
</section>
</div>
<footer>
<p>© 2025 Damico Group of Companies. All Rights Reserved.</p>
</footer>
</body>
</html>