0
X
Add Snippet To Project
New Project
Add To Existing Project
<!-- ABOUT.HTML - OXIL ABOUT US PAGE -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Oxil - Who We Are</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.8; color: #333; }
header { background: #002e5c; color: white; padding: 20px; text-align: center; }
nav { background: #002e5c; padding: 15px; text-align: center; }
nav a { color: white; text-decoration: none; margin: 0 20px; font-weight: bold; }
.hero { background: #004a8f; color: white; padding: 60px 20px; text-align: center; }
.section { padding: 40px 20px; max-width: 1000px; margin: 0 auto; }
.section h2 { color: #002e5c; margin-bottom: 20px; font-size: 32px; }
.section p { margin-bottom: 15px; }
.content-block { background: #f9f9f9; padding: 30px; margin: 30px 0; border-radius: 8px; }
footer { background: #002e5c; color: white; text-align: center; padding: 30px; margin-top: 50px; }
</style>
</head>
<body>
<header>
<h1>OXIL</h1>
<p>About Us</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="residential.html">Residential</a>
<a href="commercial.html">Commercial</a>
<a href="partnership.html">Partnership</a>
<a href="contact.html">Contact</a>
</nav>
<section class="hero">
<h2>Who We Are</h2>
<p>An integrated design-build company focused on prefabricated modular homes and commercial structures</p>
</section>
<section class="section">
<h2>Our Mission</h2>
<p>Oxil brings factory precision to construction, delivering high-quality, relocatable cabins and multi-module buildings that install in days, not months. We believe in making modern, sustainable housing accessible and affordable.</p>
</section>
<section class="section">
<div class="content-block">
<h2>What We Build</h2>
<p><strong>Modular Prefab Homes:</strong> Studios to family residences engineered for comfort and durability</p>
<p><strong>Retail and F&B Cabins:</strong> Ready-to-operate commercial spaces for restaurants, cafes, and boutiques</p>
<p><strong>Work-from-Anywhere Offices:</strong> Modern suites and pods for remote teams and co-working</p>
<p><strong>Hospitality Clusters:</strong> Eco-stays, event venues, and highway hubs for tourism and hospitality</p>
</div>
</section>
<section class="section">
<div class="content-block">
<h2>Why Oxil</h2>
<ul style="margin-left: 20px; margin-bottom: 15px;">
<li>Factory-built quality and consistency with strict QC</li>
<li>Lower site disruption and faster go-live timelines</li>
<li>Centralized operations support and maintenance</li>
<li>ISO-lean build process ensuring efficiency</li>
<li>Sustainability-first with efficient envelopes and solar-ready systems</li>
<li>Fully customizable layouts and premium finishes</li>
<li>Comprehensive warranty and after-sales service</li>
</ul>
</div>
</section>
<section class="section">
<h2>Engineering Excellence</h2>
<p>Every Oxil unit is engineered for Indian conditions with thermal, acoustic, and structural optimization. Our buildings withstand challenging climates and environments while maintaining premium comfort standards.</p>
</section>
<footer>
<p>© 2025 Oxil. All rights reserved. | Contact: info@oxil.com</p>
</footer>
</body>
</html>
Complete About Us page describing Oxil's mission, values, and what we build
