perfumeworld / index.html
pankajcalm's picture
Create a modern, elegant, and responsive e-commerce website for selling luxury perfumes. The website should include:
f09c3f9 verified
Raw
History Blame Contribute Delete
19.3 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LUXE | Luxury Perfumes</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
}
.font-serif {
font-family: 'Cormorant Garamond', serif;
}
.hero-pattern {
background-image: url('http://static.photos/gradient/1200x630/42');
background-size: cover;
background-position: center;
}
.perfume-card:hover .perfume-overlay {
opacity: 1;
}
</style>
</head>
<body class="bg-white text-gray-800">
<!-- Navigation -->
<nav class="bg-black text-white py-4 px-6 sticky top-0 z-50">
<div class="container mx-auto flex justify-between items-center">
<a href="#" class="font-serif text-2xl font-bold text-gold-500">LUXE</a>
<div class="hidden md:flex space-x-8">
<a href="#" class="hover:text-amber-200 transition">Home</a>
<a href="#" class="hover:text-amber-200 transition">Shop</a>
<a href="#" class="hover:text-amber-200 transition">Collections</a>
<a href="#" class="hover:text-amber-200 transition">About</a>
<a href="#" class="hover:text-amber-200 transition">Journal</a>
</div>
<div class="flex items-center space-x-4">
<a href="#"><i data-feather="search"></i></a>
<a href="#"><i data-feather="user"></i></a>
<a href="#"><i data-feather="shopping-bag"></i></a>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-pattern text-white py-32 px-6 relative">
<div class="absolute inset-0 bg-black opacity-50"></div>
<div class="container mx-auto relative z-10 text-center" data-aos="fade-up">
<h1 class="font-serif text-5xl md:text-7xl mb-6">Timeless Fragrances</h1>
<p class="text-xl mb-8 max-w-2xl mx-auto">Discover our exquisite collection of handcrafted perfumes that tell your story</p>
<button class="bg-amber-200 text-black px-8 py-3 font-medium hover:bg-amber-300 transition">Shop Now</button>
</div>
</section>
<!-- Featured Collections -->
<section class="py-16 px-6 bg-white">
<div class="container mx-auto">
<h2 class="font-serif text-3xl text-center mb-12">Our Collections</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="relative overflow-hidden group" data-aos="fade-up">
<img src="http://static.photos/nature/640x360/1" alt="Floral Collection" class="w-full h-96 object-cover">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition">
<button class="bg-white text-black px-6 py-2 font-medium">Floral Collection</button>
</div>
</div>
<div class="relative overflow-hidden group" data-aos="fade-up" data-aos-delay="100">
<img src="http://static.photos/nature/640x360/2" alt="Woody Collection" class="w-full h-96 object-cover">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition">
<button class="bg-white text-black px-6 py-2 font-medium">Woody Collection</button>
</div>
</div>
<div class="relative overflow-hidden group" data-aos="fade-up" data-aos-delay="200">
<img src="http://static.photos/nature/640x360/3" alt="Citrus Collection" class="w-full h-96 object-cover">
<div class="absolute inset-0 bg-black bg-opacity-40 flex items-center justify-center opacity-0 group-hover:opacity-100 transition">
<button class="bg-white text-black px-6 py-2 font-medium">Citrus Collection</button>
</div>
</div>
</div>
</div>
</section>
<!-- Best Sellers -->
<section class="py-16 px-6 bg-gray-50">
<div class="container mx-auto">
<h2 class="font-serif text-3xl text-center mb-12">Best Sellers</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Product 1 -->
<div class="bg-white shadow-md rounded overflow-hidden" data-aos="fade-up">
<div class="relative perfume-card">
<img src="http://static.photos/white/640x360/1" alt="Midnight Oud" class="w-full h-80 object-cover">
<div class="absolute inset-0 bg-black bg-opacity-0 flex items-center justify-center perfume-overlay opacity-0 transition">
<button class="bg-amber-200 text-black px-6 py-2 font-medium">Quick View</button>
</div>
</div>
<div class="p-4">
<h3 class="font-serif text-xl">Midnight Oud</h3>
<p class="text-gray-600 mb-2">Woody • Spicy • Amber</p>
<div class="flex justify-between items-center">
<span class="font-medium">$120</span>
<button class="text-amber-200 hover:text-amber-300">
<i data-feather="shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product 2 -->
<div class="bg-white shadow-md rounded overflow-hidden" data-aos="fade-up" data-aos-delay="100">
<div class="relative perfume-card">
<img src="http://static.photos/white/640x360/2" alt="Rose Velvet" class="w-full h-80 object-cover">
<div class="absolute inset-0 bg-black bg-opacity-0 flex items-center justify-center perfume-overlay opacity-0 transition">
<button class="bg-amber-200 text-black px-6 py-2 font-medium">Quick View</button>
</div>
</div>
<div class="p-4">
<h3 class="font-serif text-xl">Rose Velvet</h3>
<p class="text-gray-600 mb-2">Floral • Sweet • Powdery</p>
<div class="flex justify-between items-center">
<span class="font-medium">$95</span>
<button class="text-amber-200 hover:text-amber-300">
<i data-feather="shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product 3 -->
<div class="bg-white shadow-md rounded overflow-hidden" data-aos="fade-up" data-aos-delay="200">
<div class="relative perfume-card">
<img src="http://static.photos/white/640x360/3" alt="Citrus Bloom" class="w-full h-80 object-cover">
<div class="absolute inset-0 bg-black bg-opacity-0 flex items-center justify-center perfume-overlay opacity-0 transition">
<button class="bg-amber-200 text-black px-6 py-2 font-medium">Quick View</button>
</div>
</div>
<div class="p-4">
<h3 class="font-serif text-xl">Citrus Bloom</h3>
<p class="text-gray-600 mb-2">Fresh • Citrus • Green</p>
<div class="flex justify-between items-center">
<span class="font-medium">$85</span>
<button class="text-amber-200 hover:text-amber-300">
<i data-feather="shopping-cart"></i>
</button>
</div>
</div>
</div>
<!-- Product 4 -->
<div class="bg-white shadow-md rounded overflow-hidden" data-aos="fade-up" data-aos-delay="300">
<div class="relative perfume-card">
<img src="http://static.photos/white/640x360/4" alt="Vanilla Noir" class="w-full h-80 object-cover">
<div class="absolute inset-0 bg-black bg-opacity-0 flex items-center justify-center perfume-overlay opacity-0 transition">
<button class="bg-amber-200 text-black px-6 py-2 font-medium">Quick View</button>
</div>
</div>
<div class="p-4">
<h3 class="font-serif text-xl">Vanilla Noir</h3>
<p class="text-gray-600 mb-2">Gourmand • Warm • Sweet</p>
<div class="flex justify-between items-center">
<span class="font-medium">$110</span>
<button class="text-amber-200 hover:text-amber-300">
<i data-feather="shopping-cart"></i>
</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border border-black px-8 py-3 font-medium hover:bg-black hover:text-white transition">View All Products</button>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-16 px-6 bg-white">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8" data-aos="fade-right">
<img src="http://static.photos/black/640x360/1" alt="Perfume Making" class="w-full rounded shadow-lg">
</div>
<div class="md:w-1/2" data-aos="fade-left">
<h2 class="font-serif text-3xl mb-6">The Art of Perfumery</h2>
<p class="mb-4">Founded in 1985, LUXE has been crafting exquisite fragrances using only the finest ingredients sourced from around the world. Each bottle tells a story of passion, craftsmanship, and timeless elegance.</p>
<p class="mb-6">Our master perfumers blend tradition with innovation to create scents that evoke emotion and create lasting memories.</p>
<button class="bg-black text-white px-8 py-3 font-medium hover:bg-gray-800 transition">Our Story</button>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 px-6 bg-gray-50">
<div class="container mx-auto">
<h2 class="font-serif text-3xl text-center mb-12">What Our Customers Say</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded shadow" data-aos="fade-up">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="http://static.photos/people/200x200/1" alt="Customer" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-medium">Sarah Johnson</h4>
<div class="flex text-amber-300">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
</div>
<p>"Midnight Oud is absolutely divine. The scent lasts all day and I constantly receive compliments. Worth every penny!"</p>
</div>
<div class="bg-white p-6 rounded shadow" data-aos="fade-up" data-aos-delay="100">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="http://static.photos/people/200x200/2" alt="Customer" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-medium">Michael Chen</h4>
<div class="flex text-amber-300">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
</div>
<p>"The packaging alone is luxurious, but the fragrance is what keeps me coming back. Citrus Bloom is my new signature scent."</p>
</div>
<div class="bg-white p-6 rounded shadow" data-aos="fade-up" data-aos-delay="200">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="http://static.photos/people/200x200/3" alt="Customer" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-medium">Emma Rodriguez</h4>
<div class="flex text-amber-300">
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
<i data-feather="star" class="w-4 h-4 fill-current"></i>
</div>
</div>
</div>
<p>"I've been collecting perfumes for years and LUXE stands out for its quality and unique scents. The customer service is exceptional too."</p>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 px-6 bg-black text-white">
<div class="container mx-auto text-center">
<h2 class="font-serif text-3xl mb-6">Join Our Fragrance Journey</h2>
<p class="max-w-2xl mx-auto mb-8">Subscribe to our newsletter for exclusive offers, new releases, and fragrance tips.</p>
<div class="max-w-md mx-auto flex">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 text-black">
<button class="bg-amber-200 text-black px-6 py-3 font-medium hover:bg-amber-300 transition">Subscribe</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12 px-6">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="font-serif text-xl mb-4">LUXE</h3>
<p class="mb-4">Crafting timeless fragrances since 1985.</p>
<div class="flex space-x-4">
<a href="#"><i data-feather="instagram"></i></a>
<a href="#"><i data-feather="facebook"></i></a>
<a href="#"><i data-feather="twitter"></i></a>
<a href="#"><i data-feather="pinterest"></i></a>
</div>
</div>
<div>
<h4 class="font-medium mb-4">Shop</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-amber-200 transition">All Perfumes</a></li>
<li><a href="#" class="hover:text-amber-200 transition">Best Sellers</a></li>
<li><a href="#" class="hover:text-amber-200 transition">New Arrivals</a></li>
<li><a href="#" class="hover:text-amber-200 transition">Gift Sets</a></li>
</ul>
</div>
<div>
<h4 class="font-medium mb-4">About</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-amber-200 transition">Our Story</a></li>
<li><a href="#" class="hover:text-amber-200 transition">Master Perfumers</a></li>
<li><a href="#" class="hover:text-amber-200 transition">Sustainability</a></li>
<li><a href="#" class="hover:text-amber-200 transition">Press</a></li>
</ul>
</div>
<div>
<h4 class="font-medium mb-4">Customer Care</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:text-amber-200 transition">Contact Us</a></li>
<li><a href="#" class="hover:text-amber-200 transition">FAQs</a></li>
<li><a href="#" class="hover:text-amber-200 transition">Shipping & Returns</a></li>
<li><a href="#" class="hover:text-amber-200 transition">Privacy Policy</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
<p>© 2023 LUXE Perfumes. All rights reserved.</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
</script>
</body>
</html>