File size: 5,818 Bytes
9fd7df2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exotic Car Showcase</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.car-image {
transition: all 0.3s ease;
}
.car-image:hover {
transform: scale(1.02);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.ocean-gradient {
background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}
</style>
</head>
<body class="bg-gray-100 min-h-screen">
<div class="ocean-gradient py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h1 class="text-4xl font-extrabold text-white sm:text-5xl sm:tracking-tight lg:text-6xl">
Coastal Car Dreams
</h1>
<p class="mt-5 max-w-xl mx-auto text-xl text-blue-100">
A stunning duo cruising the scenic coastline
</p>
</div>
<div class="bg-white rounded-3xl overflow-hidden shadow-xl max-w-4xl mx-auto">
<div class="relative">
<img
src="https://images.unsplash.com/photo-1624365571766-1a3ce952b1d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2560&q=80"
alt="Lime green Nissan 240SX and white Ford GT350 Mustang with blue stripes driving along coastal road"
class="car-image w-full h-auto rounded-t-3xl"
>
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black/70 to-transparent p-6">
<div class="flex flex-col sm:flex-row justify-between items-start sm:items-end">
<div>
<h2 class="text-2xl font-bold text-white">Coastal Cruisers</h2>
<p class="text-blue-200">Pacific Coast Highway</p>
</div>
<div class="mt-4 sm:mt-0 flex space-x-3">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-lime-500/20 text-lime-200">
Nissan 240SX
</span>
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-blue-500/20 text-blue-200">
Ford GT350
</span>
</div>
</div>
</div>
</div>
<div class="p-6 sm:p-8 bg-gray-50 rounded-b-3xl">
<div class="flex flex-col sm:flex-row justify-between items-start sm:items-center">
<div class="mb-4 sm:mb-0">
<h3 class="text-lg font-medium text-gray-900">About This Shot</h3>
<p class="mt-1 text-sm text-gray-600">
Captured at golden hour along one of California's most scenic coastal routes.
</p>
</div>
<button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Download High-Res
</button>
</div>
</div>
</div>
<div class="mt-12 grid grid-cols-1 md:grid-cols-3 gap-6 max-w-4xl mx-auto">
<div class="bg-white/30 backdrop-blur-sm rounded-xl p-6 shadow-lg border border-white/20">
<h3 class="text-lg font-medium text-white">Nissan 240SX</h3>
<p class="mt-2 text-blue-100">
The vibrant lime green 240SX showcases Japanese drifting heritage with modern flair.
</p>
</div>
<div class="bg-white/30 backdrop-blur-sm rounded-xl p-6 shadow-lg border border-white/20">
<h3 class="text-lg font-medium text-white">Ford GT350</h3>
<p class="mt-2 text-blue-100">
The white Mustang with iconic blue stripes represents American muscle at its finest.
</p>
</div>
<div class="bg-white/30 backdrop-blur-sm rounded-xl p-6 shadow-lg border border-white/20">
<h3 class="text-lg font-medium text-white">The Location</h3>
<p class="mt-2 text-blue-100">
This breathtaking coastal road offers panoramic ocean views and perfect driving conditions.
</p>
</div>
</div>
</div>
</div>
<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=AMCcode/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |