Free
Contact
The Fairway Club Contact
A contact block extracted from the The Fairway Club template, available in Tailwind CSS, Bootstrap, DaisyUI, and Material Design.
0
8
A contact block extracted from the The Fairway Club template, available in Tailwind CSS, Bootstrap, DaisyUI, and Material Design.
<!DOCTYPE html>
<html lang="en">
<head>
<script>
window.FontAwesomeConfig = {
autoReplaceSvg: 'nest'
};
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Fairway Club Contact | Tailwind CSS UI Block</title>
<meta name="description" content="A contact block extracted from the The Fairway Club template, available in Tailwind CSS, Bootstrap, DaisyUI, and Material Design.">
<meta name="keywords" content="The Fairway Club, Tailwind CSS template, HTML website template, private golf club, membership landing page, luxury sports club, responsive golf website design">
<meta name="author" content="Let's templates">
<link rel="canonical" href="">
<meta property="og:type" content="product">
<meta property="og:site_name" content="Let's templates">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="">
<meta property="og:title" content="The Fairway Club | Tailwind CSS Private Golf Club Template">
<meta property="og:description" content="An elegant Tailwind CSS template for private golf clubs, members-only sanctuaries, and luxury sports membership landing pages.">
<meta property="og:image" content="">
<meta property="og:image:alt" content="The Fairway Club template preview">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="">
<meta name="twitter:title" content="The Fairway Club | Tailwind CSS Private Golf Club Template">
<meta name="twitter:description" content="An elegant Tailwind CSS template for private golf clubs, members-only sanctuaries, and luxury sports membership landing pages.">
<meta name="twitter:image" content="">
<meta name="twitter:image:alt" content="The Fairway Club template preview">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
<style>
html {
overflow-x: hidden;
}
body {
font-family: 'Inter', sans-serif;
background-color: #f5f3eb;
color: #1a1a1a;
}
h1, h2, .serif {
font-family: 'Playfair Display', serif;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
</head>
<body class="antialiased overflow-x-hidden">
<!-- block:start contact -->
<section id="location" class="py-20 md:py-32 bg-[#f5f3eb]">
<div class="max-w-7xl mx-auto px-4 sm:px-6">
<div class="grid grid-cols-1 lg:grid-cols-12 gap-8 md:gap-12 items-center">
<div class="lg:col-span-7 h-[320px] sm:h-[420px] md:h-[600px] rounded-[2rem] md:rounded-[3rem] overflow-hidden relative shadow-inner bg-neutral-200 min-w-0">
<!-- Map Placeholder/Illustration -->
<img class="w-full h-full object-cover opacity-80" src="https://storage.googleapis.com/uxpilot-auth.appspot.com/gen_bb172c8bac_d5b980751990fe80.png" alt="minimalist artistic map of a coastal region, soft earth tones, topographical lines" />
<div class="absolute inset-0 flex items-center justify-center">
<div class="relative">
<div class="w-4 h-4 bg-black rounded-full animate-ping absolute"></div>
<div class="w-4 h-4 bg-black rounded-full relative"></div>
<div class="absolute top-8 left-1/2 -translate-x-1/2 whitespace-nowrap bg-white px-4 py-2 rounded-lg shadow-lg text-xs font-bold uppercase tracking-widest">
The Fairway Club
</div>
</div>
</div>
</div>
<div class="lg:col-span-5 lg:pl-0 xl:pl-12 min-w-0">
<span class="text-[10px] sm:text-xs uppercase tracking-[0.3em] sm:tracking-[0.4em] font-medium mb-4 md:mb-6 block text-neutral-500">The Estate</span>
<h2 class="text-3xl sm:text-4xl md:text-5xl font-normal leading-tight mb-6 md:mb-8">
Where the land <br><span class="italic opacity-80">meets the sky.</span>
</h2>
<p class="text-neutral-600 text-base md:text-lg font-light leading-relaxed mb-8 md:mb-12">
Nestled in the quiet reaches of the Highlands, our estate offers a sanctuary far from the noise of the modern world.
</p>
<div class="bg-white p-6 sm:p-8 md:p-12 rounded-[2rem] md:rounded-[2.5rem] shadow-sm border border-neutral-100">
<h4 class="serif text-2xl mb-4 text-center">Join the Correspondence</h4>
<p class="text-neutral-500 text-sm text-center mb-8 font-light leading-relaxed">
A monthly letter on the craft, the club, and the finer details of the game.
</p>
<form class="space-y-4">
<div class="relative">
<input type="email" placeholder="Email Address" class="w-full px-6 py-4 rounded-full bg-neutral-50 border-transparent focus:border-neutral-200 focus:bg-white focus:ring-0 transition-all text-sm outline-none">
</div>
<button type="submit" class="w-full bg-black text-white py-4 rounded-full text-xs uppercase tracking-[0.2em] font-bold hover:bg-neutral-800 transition-colors">
Subscribe
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- block:end contact -->
<script>
(function () {
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileNavigation = document.getElementById('mobile-navigation');
const iconOpen = document.getElementById('mobile-menu-icon-open');
const iconClose = document.getElementById('mobile-menu-icon-close');
if (!mobileMenuButton || !mobileNavigation) return;
function setMobileMenu(open) {
mobileNavigation.hidden = !open;
mobileMenuButton.setAttribute('aria-expanded', String(open));
mobileMenuButton.setAttribute('aria-label', open ? 'Close navigation' : 'Open navigation');
iconOpen.classList.toggle('hidden', open);
iconClose.classList.toggle('hidden', !open);
}
mobileMenuButton.addEventListener('click', function () {
setMobileMenu(mobileNavigation.hidden);
});
mobileNavigation.querySelectorAll('a').forEach(function (link) {
link.addEventListener('click', function () {
setMobileMenu(false);
});
});
document.addEventListener('keydown', function (event) {
if (event.key === 'Escape' && !mobileNavigation.hidden) {
setMobileMenu(false);
}
});
})();
</script>
</body>
</html>
Free
Business
Unlock the entire library of premium templates and blocks. Renews automatically, cancel anytime.