liamzzz / index.html
Liamzzz's picture
Pallette should be Blue and White
5256a68 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MADMAX TRUCK RENTAL - Affordable Truck Rentals Nationwide</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero-bg {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
background-size: cover;
background-position: center;
}
.truck-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.contact-card {
transition: all 0.3s ease;
}
.contact-card:hover {
transform: scale(1.05);
}
.map-container {
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
height: 0;
}
.map-container iframe {
left: 0;
top: 0;
height: 100%;
width: 100%;
position: absolute;
}
</style>
</head>
<body class="font-sans bg-gray-100">
<!-- Navigation -->
<nav class="bg-blue-600 text-white py-4 px-6 sticky top-0 z-50 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center">
<i class="fas fa-truck-moving text-white text-3xl mr-3"></i>
<span class="text-2xl font-bold">MADMAX <span class="text-white">TRUCK RENTAL</span></span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="hover:text-blue-100 transition">Home</a>
<a href="#services" class="hover:text-blue-100 transition">Services</a>
<a href="#fleet" class="hover:text-blue-100 transition">Our Fleet</a>
<a href="#contact" class="hover:text-blue-100 transition">Contact</a>
</div>
<div class="md:hidden">
<button id="menu-btn" class="text-white focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-black py-4 px-6 absolute left-0 right-0">
<div class="flex flex-col space-y-4">
<a href="#home" class="hover:text-blue-100 transition">Home</a>
<a href="#services" class="hover:text-blue-100 transition">Services</a>
<a href="#fleet" class="hover:text-blue-100 transition">Our Fleet</a>
<a href="#contact" class="hover:text-blue-100 transition">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-bg text-white py-32 px-6">
<div class="container mx-auto text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">YOUR RELIABLE TRUCK RENTAL PARTNER</h1>
<p class="text-xl md:text-2xl mb-8">Affordable truck rentals available nationwide with 24/7 support</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<a href="#contact" class="bg-white hover:bg-blue-100 text-blue-600 font-bold py-3 px-8 rounded-full transition duration-300">Get a Quote</a>
<a href="#fleet" class="bg-transparent hover:bg-white hover:text-blue-600 border-2 border-white text-white font-bold py-3 px-8 rounded-full transition duration-300">View Our Fleet</a>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div class="p-6">
<div class="text-5xl font-bold text-white mb-2">500+</div>
<div class="text-xl">Trucks in Fleet</div>
</div>
<div class="p-6">
<div class="text-5xl font-bold text-white mb-2">48</div>
<div class="text-xl">States Covered</div>
</div>
<div class="p-6">
<div class="text-5xl font-bold text-white mb-2">24/7</div>
<div class="text-xl">Customer Support</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 px-6 bg-white">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">OUR <span class="text-blue-600">SERVICES</span></h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-100 p-8 rounded-lg shadow-lg hover:shadow-xl transition">
<div class="text-blue-600 text-4xl mb-4">
<i class="fas fa-truck"></i>
</div>
<h3 class="text-xl font-bold mb-3">Short-Term Rentals</h3>
<p class="text-gray-700">Flexible daily, weekly, or monthly truck rentals for all your transportation needs.</p>
</div>
<div class="bg-gray-100 p-8 rounded-lg shadow-lg hover:shadow-xl transition">
<div class="text-yellow-500 text-4xl mb-4">
<i class="fas fa-calendar-alt"></i>
</div>
<h3 class="text-xl font-bold mb-3">Long-Term Leasing</h3>
<p class="text-gray-700">Cost-effective long-term leasing options with maintenance included.</p>
</div>
<div class="bg-gray-100 p-8 rounded-lg shadow-lg hover:shadow-xl transition">
<div class="text-yellow-500 text-4xl mb-4">
<i class="fas fa-road"></i>
</div>
<h3 class="text-xl font-bold mb-3">Nationwide Coverage</h3>
<p class="text-gray-700">Truck rentals available across all 48 contiguous states with multiple pickup locations.</p>
</div>
</div>
</div>
</section>
<!-- Fleet Section -->
<section id="fleet" class="py-20 px-6 bg-gray-100">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">OUR <span class="text-blue-600">FLEET</span></h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Truck 1 -->
<div class="truck-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<img src="https://images.unsplash.com/photo-1601362840469-51e4d8d58785?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Box Truck" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Box Trucks</h3>
<p class="text-gray-700 mb-4">Perfect for moving and delivery services with secure cargo space.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-blue-600">From $99/day</span>
<button class="bg-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700 transition">Rent Now</button>
</div>
</div>
</div>
<!-- Truck 2 -->
<div class="truck-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<img src="https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Semi Truck" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Semi Trucks</h3>
<p class="text-gray-700 mb-4">Ideal for long-haul transportation with powerful engines.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-yellow-500">From $199/day</span>
<button class="bg-black text-white px-4 py-2 rounded hover:bg-gray-800 transition">Rent Now</button>
</div>
</div>
</div>
<!-- Truck 3 -->
<div class="truck-card bg-white rounded-lg overflow-hidden shadow-lg transition duration-300">
<img src="https://images.unsplash.com/photo-1601362840469-51e4d8d58785?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Flatbed Truck" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Flatbed Trucks</h3>
<p class="text-gray-700 mb-4">Great for oversized or heavy loads that need open transport.</p>
<div class="flex justify-between items-center">
<span class="font-bold text-yellow-500">From $149/day</span>
<button class="bg-black text-white px-4 py-2 rounded hover:bg-gray-800 transition">Rent Now</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#contact" class="inline-block bg-yellow-500 hover:bg-yellow-600 text-black font-bold py-3 px-8 rounded-full transition duration-300">View All Truck Options</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 px-6 bg-white">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">WHAT OUR <span class="text-blue-600">CUSTOMERS</span> SAY</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-100 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="text-blue-600 text-2xl">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-700 mb-6">"MADMAX TRUCK RENTAL saved our business during peak season. Their trucks are well-maintained and their rates are unbeatable!"</p>
<div class="flex items-center">
<div class="bg-gray-300 rounded-full w-12 h-12"></div>
<div class="ml-4">
<h4 class="font-bold">John D.</h4>
<p class="text-gray-600 text-sm">Logistics Manager</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-100 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="text-yellow-500 text-2xl">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-700 mb-6">"I've rented from MADMAX multiple times for my moving business. Their customer service is exceptional and their trucks are always reliable."</p>
<div class="flex items-center">
<div class="bg-gray-300 rounded-full w-12 h-12"></div>
<div class="ml-4">
<h4 class="font-bold">Sarah M.</h4>
<p class="text-gray-600 text-sm">Moving Company Owner</p>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-100 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="text-yellow-500 text-2xl">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<p class="text-gray-700 mb-6">"Great experience overall. The pickup process was quick and the truck was in perfect condition. Will definitely use them again."</p>
<div class="flex items-center">
<div class="bg-gray-300 rounded-full w-12 h-12"></div>
<div class="ml-4">
<h4 class="font-bold">Michael T.</h4>
<p class="text-gray-600 text-sm">Independent Contractor</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 px-6 bg-gray-900 text-white">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">CONTACT <span class="text-white">US</span></h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div>
<h3 class="text-2xl font-bold mb-6">GET IN TOUCH</h3>
<p class="text-gray-300 mb-8">Have questions about our truck rental services? Reach out to our team and we'll get back to you within 24 hours.</p>
<div class="space-y-6">
<!-- Contact Card 1 -->
<div class="contact-card bg-gray-800 p-6 rounded-lg flex items-start">
<div class="bg-white text-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-phone text-xl"></i>
</div>
<div>
<h4 class="font-bold">Phone</h4>
<a href="tel:8188690411" class="text-gray-300 hover:text-white transition">(818) 869-0411</a>
</div>
</div>
<!-- Contact Card 2 -->
<div class="contact-card bg-gray-800 p-6 rounded-lg flex items-start">
<div class="bg-white text-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-xl"></i>
</div>
<div>
<h4 class="font-bold">Email</h4>
<a href="mailto:madmaxTruckrental@gmail.com" class="text-gray-300 hover:text-white transition">madmaxTruckrental@gmail.com</a>
</div>
</div>
<!-- Contact Card 3 -->
<div class="contact-card bg-gray-800 p-6 rounded-lg flex items-start">
<div class="bg-white text-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-xl"></i>
</div>
<div>
<h4 class="font-bold">Location</h4>
<p class="text-gray-300">22 Harrison St Asheville, NC 28801 United States</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold text-xl mb-4">Business Hours</h4>
<div class="space-y-2">
<div class="flex justify-between border-b border-gray-700 pb-2">
<span>Monday - Friday</span>
<span>8:00 AM - 6:00 PM</span>
</div>
<div class="flex justify-between border-b border-gray-700 pb-2">
<span>Saturday</span>
<span>9:00 AM - 4:00 PM</span>
</div>
<div class="flex justify-between border-b border-gray-700 pb-2">
<span>Sunday</span>
<span>Emergency Only</span>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-2xl font-bold mb-6">SEND US A MESSAGE</h3>
<form class="space-y-4">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label for="name" class="block mb-1">Name</label>
<input type="text" id="name" class="w-full bg-gray-800 border border-gray-700 rounded px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div>
<label for="email" class="block mb-1">Email</label>
<input type="email" id="email" class="w-full bg-gray-800 border border-gray-700 rounded px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
</div>
<div>
<label for="phone" class="block mb-1">Phone</label>
<input type="tel" id="phone" class="w-full bg-gray-800 border border-gray-700 rounded px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div>
<label for="subject" class="block mb-1">Subject</label>
<input type="text" id="subject" class="w-full bg-gray-800 border border-gray-700 rounded px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
</div>
<div>
<label for="message" class="block mb-1">Message</label>
<textarea id="message" rows="5" class="w-full bg-gray-800 border border-gray-700 rounded px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500"></textarea>
</div>
<button type="submit" class="bg-white hover:bg-blue-100 text-blue-600 font-bold py-3 px-8 rounded-full transition duration-300 w-full">Send Message</button>
</form>
</div>
</div>
<div class="mt-16">
<h3 class="text-2xl font-bold mb-6 text-center">OUR LOCATION</h3>
<div class="map-container rounded-lg shadow-lg">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3239.123456789012!2d-82.55123456789012!3d35.59512345678901!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zMzXCsDM1JzQyLjQiTiA4MsKwMzMnMDQuNCJX!5e0!3m2!1sen!2sus!4v1234567890123!5m2!1sen!2sus" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 px-6 bg-blue-600 text-white">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">READY TO RENT YOUR TRUCK?</h2>
<p class="text-xl mb-8">Get started today with our simple rental process and competitive rates.</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<a href="tel:8188690411" class="bg-white hover:bg-blue-100 text-blue-600 font-bold py-3 px-8 rounded-full transition duration-300">
<i class="fas fa-phone mr-2"></i> Call Now
</a>
<a href="#contact" class="bg-transparent hover:bg-white hover:text-blue-600 border-2 border-white text-white font-bold py-3 px-8 rounded-full transition duration-300">
<i class="fas fa-envelope mr-2"></i> Email Us
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black text-white py-12 px-6">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-truck-moving text-white text-3xl mr-3"></i>
<span class="text-2xl font-bold">MADMAX <span class="text-white">TRUCK RENTAL</span></span>
</div>
<p class="text-gray-400">Your trusted partner for affordable and reliable truck rentals across the United States.</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white transition">Services</a></li>
<li><a href="#fleet" class="text-gray-400 hover:text-white transition">Our Fleet</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Short-Term Rentals</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Long-Term Leasing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Commercial Rentals</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">24/7 Roadside Assistance</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Contact Info</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-map-marker-alt text-yellow-500 mt-1 mr-2"></i>
<span class="text-gray-400">22 Harrison St Asheville, NC 28801</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone text-yellow-500 mr-2"></i>
<a href="tel:8188690411" class="text-gray-400 hover:text-white transition">(818) 869-0411</a>
</li>
<li class="flex items-center">
<i class="fas fa-envelope text-yellow-500 mr-2"></i>
<a href="mailto:madmaxTruckrental@gmail.com" class="text-gray-400 hover:text-white transition">madmaxTruckrental@gmail.com</a>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
<p>&copy; 2023 MADMAX TRUCK RENTAL. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
// Close mobile menu if open
mobileMenu.classList.add('hidden');
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
// Form submission (example)
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
}
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Liamzzz/liamzzz" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>