<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NH Motoring</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background: #111;
color: #fff;
}
header {
text-align: center;
padding: 20px;
background: #000;
}
header img {
max-width: 200px;
}
section {
padding: 40px 20px;
max-width: 1000px;
margin: auto;
}
h1, h2 {
color: #fff;
}
.card {
background: #1c1c1c;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
}
.button {
display: inline-block;
padding: 10px 20px;
background: #e60000;
color: white;
text-decoration: none;
border-radius: 5px;
}
footer {
text-align: center;
padding: 20px;
background: #000;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<!-- REPLACE logo.png with your actual logo file -->
<img src="logo.png" alt="NH Motoring Logo">
<h1>NH Motoring</h1>
<p>Vehicle Sales | Workshop Services | Recovery</p>
</header>
<section>
<h2>About Us</h2>
<div class="card">
<p>
Independent automotive workshop and vehicle sales based in Redhill, Surrey.
We specialise in supplying quality used vehicles that have been inspected,
prepared, and tested in-house.
</p>
</div>
</section>
<section>
<h2>Vehicles for Sale</h2>
<div class="card">
<p>Current vehicles are advertised across Facebook Marketplace, eBay and Gumtree.</p>
<p>Contact us directly for latest availability.</p>
</div>
</section>
<section>
<h2>Services</h2>
<div class="card">
<h3>Workshop</h3>
<p>Diagnostics, servicing, brakes, timing chains, clutch replacement and general repairs.</p>
</div>
<div class="card">
<h3>DPF Cleaning</h3>
<p>Professional DPF soak cleaning service to restore performance and efficiency.</p>
</div>
<div class="card">
<h3>Transport & Recovery</h3>
<p>Vehicle collection and delivery service using our recovery truck.</p>
</div>
</section>
<section>
<h2>Location</h2>
<div class="card">
<p>Based in Redhill, Surrey. Viewings by appointment only.</p>
<iframe
src="https://www.google.com/maps?q=Redhill%20Surrey&output=embed"
width="100%"
height="300"
style="border:0;">
</iframe>
</div>
</section>
<section>
<h2>Contact</h2>
<div class="card">
<p><strong>Phone:</strong> [ADD YOUR NUMBER]</p>
<p><strong>Email:</strong> nhmotoring@outlook.com</p>
<p><strong>WhatsApp:</strong> Available on request</p>
</div>
</section>
<footer>
<p>© NH Motoring</p>
</footer>
</body>
</html>