2025-06-04 09:34:13 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
2025-06-04 09:46:25 +02:00
< title > Website Template< / title >
2025-06-04 10:09:52 +02:00
<!-- Favicon -->
< link rel = "icon" type = "image/svg+xml" href = "assets/favicon.svg" >
2025-06-04 09:38:33 +02:00
<!-- Bootstrap CSS -->
< link href = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel = "stylesheet" >
<!-- Tailwind CSS -->
< script src = "https://cdn.tailwindcss.com" > < / script >
<!-- Custom CSS -->
< link rel = "stylesheet" href = "css/styles.css" >
2025-06-04 09:59:01 +02:00
<!-- Custom JS -->
< script src = "js/tailwind.config.js" > < / script >
2025-06-04 09:34:13 +02:00
< / head >
2025-06-04 09:50:53 +02:00
< body class = "bg-gradient-to-br from-gray-100 to-blue-50" >
2025-06-04 09:46:25 +02:00
<!-- Navigation -->
2025-06-04 09:50:53 +02:00
< nav class = "navbar navbar-expand-lg navbar-dark bg-gradient-to-r from-purple-600 to-indigo-600 fixed-top transition-all duration-300 hover:shadow-lg" >
2025-06-04 09:38:33 +02:00
< div class = "container" >
2025-06-04 09:50:53 +02:00
< a class = "navbar-brand hover:scale-110 transition-transform duration-300" href = "#" > Your Brand< / a >
2025-06-04 09:38:33 +02:00
< button class = "navbar-toggler" type = "button" data-bs-toggle = "collapse" data-bs-target = "#navbarNav" >
< span class = "navbar-toggler-icon" > < / span >
< / button >
< div class = "collapse navbar-collapse" id = "navbarNav" >
< ul class = "navbar-nav" >
< li class = "nav-item" >
2025-06-04 09:50:53 +02:00
< a class = "nav-link active hover:text-pink-300 transition-colors duration-300" href = "#home" > Home< / a >
2025-06-04 09:38:33 +02:00
< / li >
< li class = "nav-item" >
2025-06-04 09:50:53 +02:00
< a class = "nav-link hover:text-pink-300 transition-colors duration-300" href = "#about" > About< / a >
2025-06-04 09:38:33 +02:00
< / li >
< li class = "nav-item" >
2025-06-04 09:50:53 +02:00
< a class = "nav-link hover:text-pink-300 transition-colors duration-300" href = "#services" > Services< / a >
2025-06-04 09:46:25 +02:00
< / li >
< li class = "nav-item" >
2025-06-04 09:50:53 +02:00
< a class = "nav-link hover:text-pink-300 transition-colors duration-300" href = "#portfolio" > Portfolio< / a >
2025-06-04 09:46:25 +02:00
< / li >
< li class = "nav-item" >
2025-06-04 09:50:53 +02:00
< a class = "nav-link hover:text-pink-300 transition-colors duration-300" href = "#contact" > Contact< / a >
2025-06-04 09:38:33 +02:00
< / li >
< / ul >
< / div >
< / div >
< / nav >
2025-06-04 09:46:25 +02:00
<!-- Hero Section -->
2025-06-04 09:50:53 +02:00
< section id = "home" class = "py-5 min-h-screen flex items-center relative overflow-hidden" >
< div class = "absolute inset-0 bg-gradient-to-br from-blue-500 via-purple-500 to-pink-500 opacity-20" > < / div >
< div class = "container relative z-10" >
2025-06-04 09:46:25 +02:00
< div class = "row" >
< div class = "col-md-8 mx-auto text-center" >
2025-06-04 09:50:53 +02:00
< h1 class = "text-5xl font-bold mb-4 animate-float bg-gradient-to-r from-purple-600 to-pink-600 text-transparent bg-clip-text" > Welcome to Your Website< / h1 >
< p class = "text-gray-700 mb-8 text-xl animate-pulse-slow" > A clean, modern template for your next project< / p >
< div class = "space-x-4" >
< button class = "btn btn-primary bg-gradient-to-r from-purple-600 to-pink-600 hover:from-purple-700 hover:to-pink-700 hover:scale-110 transition-transform duration-300 shadow-lg hover:shadow-xl" > Get Started< / button >
< button class = "btn btn-outline-secondary hover:bg-gradient-to-r hover:from-purple-600 hover:to-pink-600 hover:text-white transition-all duration-300" > Learn More< / button >
< / div >
2025-06-04 09:46:25 +02:00
< / div >
< / div >
< / div >
< / section >
<!-- About Section -->
2025-06-04 09:50:53 +02:00
< section id = "about" class = "py-5 bg-gradient-to-br from-white to-blue-50 relative" >
2025-06-04 09:46:25 +02:00
< div class = "container" >
2025-06-04 09:50:53 +02:00
< h2 class = "text-4xl font-bold text-center mb-8 hover:scale-105 transition-transform duration-300 bg-gradient-to-r from-purple-600 to-pink-600 text-transparent bg-clip-text" > About Us< / h2 >
2025-06-04 09:46:25 +02:00
< div class = "row" >
2025-06-04 09:50:53 +02:00
< div class = "col-md-6 transform hover:scale-105 transition-all duration-300" >
< p class = "text-gray-700 text-lg" > Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.< / p >
2025-06-04 09:46:25 +02:00
< / div >
2025-06-04 09:50:53 +02:00
< div class = "col-md-6 transform hover:scale-105 transition-all duration-300" >
< p class = "text-gray-700 text-lg" > Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.< / p >
2025-06-04 09:46:25 +02:00
< / div >
< / div >
< / div >
< / section >
<!-- Services Section -->
2025-06-04 09:50:53 +02:00
< section id = "services" class = "py-5 relative bg-gradient-to-br from-blue-50 to-purple-50" >
2025-06-04 09:46:25 +02:00
< div class = "container" >
2025-06-04 09:50:53 +02:00
< h2 class = "text-4xl font-bold text-center mb-8 hover:scale-105 transition-transform duration-300 bg-gradient-to-r from-purple-600 to-pink-600 text-transparent bg-clip-text" > Our Services< / h2 >
2025-06-04 09:46:25 +02:00
< div class = "row" >
< div class = "col-md-4 mb-4" >
2025-06-04 09:50:53 +02:00
< div class = "bg-white rounded-lg shadow-md p-6 transform hover:scale-105 transition-all duration-300 hover:shadow-xl border-t-4 border-purple-500" >
< div class = "text-4xl mb-4 animate-bounce-slow" > 🚀< / div >
< h3 class = "text-xl font-bold mb-3 text-purple-600" > Service 1< / h3 >
2025-06-04 09:46:25 +02:00
< p class = "text-gray-600" > Description of your first service goes here.< / p >
< / div >
< / div >
< div class = "col-md-4 mb-4" >
2025-06-04 09:50:53 +02:00
< div class = "bg-white rounded-lg shadow-md p-6 transform hover:scale-105 transition-all duration-300 hover:shadow-xl border-t-4 border-pink-500" >
< div class = "text-4xl mb-4 animate-bounce-slow" > 💡< / div >
< h3 class = "text-xl font-bold mb-3 text-pink-600" > Service 2< / h3 >
2025-06-04 09:46:25 +02:00
< p class = "text-gray-600" > Description of your second service goes here.< / p >
< / div >
< / div >
< div class = "col-md-4 mb-4" >
2025-06-04 09:50:53 +02:00
< div class = "bg-white rounded-lg shadow-md p-6 transform hover:scale-105 transition-all duration-300 hover:shadow-xl border-t-4 border-indigo-500" >
< div class = "text-4xl mb-4 animate-bounce-slow" > ⚡< / div >
< h3 class = "text-xl font-bold mb-3 text-indigo-600" > Service 3< / h3 >
2025-06-04 09:46:25 +02:00
< p class = "text-gray-600" > Description of your third service goes here.< / p >
< / div >
< / div >
< / div >
< / div >
< / section >
<!-- Portfolio Section -->
2025-06-04 09:50:53 +02:00
< section id = "portfolio" class = "py-5 bg-gradient-to-br from-purple-50 to-pink-50 relative" >
2025-06-04 09:46:25 +02:00
< div class = "container" >
2025-06-04 09:50:53 +02:00
< h2 class = "text-4xl font-bold text-center mb-8 hover:scale-105 transition-transform duration-300 bg-gradient-to-r from-purple-600 to-pink-600 text-transparent bg-clip-text" > Portfolio< / h2 >
2025-06-04 09:46:25 +02:00
< div class = "row" >
< div class = "col-md-4 mb-4" >
2025-06-04 09:50:53 +02:00
< div class = "bg-white rounded-lg p-4 transform hover:scale-105 transition-all duration-300 hover:shadow-xl" >
< div class = "aspect-w-16 aspect-h-9 bg-gradient-to-r from-purple-500 via-pink-500 to-red-500 rounded-lg mb-3 animate-pulse-slow" > < / div >
< h3 class = "text-xl font-bold mb-2 text-purple-600" > Project 1< / h3 >
2025-06-04 09:46:25 +02:00
< p class = "text-gray-600" > Brief description of your first project.< / p >
< / div >
< / div >
< div class = "col-md-4 mb-4" >
2025-06-04 09:50:53 +02:00
< div class = "bg-white rounded-lg p-4 transform hover:scale-105 transition-all duration-300 hover:shadow-xl" >
< div class = "aspect-w-16 aspect-h-9 bg-gradient-to-r from-blue-500 via-indigo-500 to-purple-500 rounded-lg mb-3 animate-pulse-slow" > < / div >
< h3 class = "text-xl font-bold mb-2 text-indigo-600" > Project 2< / h3 >
2025-06-04 09:46:25 +02:00
< p class = "text-gray-600" > Brief description of your second project.< / p >
< / div >
< / div >
< div class = "col-md-4 mb-4" >
2025-06-04 09:50:53 +02:00
< div class = "bg-white rounded-lg p-4 transform hover:scale-105 transition-all duration-300 hover:shadow-xl" >
< div class = "aspect-w-16 aspect-h-9 bg-gradient-to-r from-pink-500 via-purple-500 to-indigo-500 rounded-lg mb-3 animate-pulse-slow" > < / div >
< h3 class = "text-xl font-bold mb-2 text-pink-600" > Project 3< / h3 >
2025-06-04 09:46:25 +02:00
< p class = "text-gray-600" > Brief description of your third project.< / p >
< / div >
< / div >
< / div >
< / div >
< / section >
<!-- Contact Section -->
2025-06-04 09:50:53 +02:00
< section id = "contact" class = "py-5 relative bg-gradient-to-br from-blue-50 to-indigo-50" >
2025-06-04 09:46:25 +02:00
< div class = "container" >
2025-06-04 09:50:53 +02:00
< h2 class = "text-4xl font-bold text-center mb-8 hover:scale-105 transition-transform duration-300 bg-gradient-to-r from-purple-600 to-pink-600 text-transparent bg-clip-text" > Contact Us< / h2 >
2025-06-04 09:46:25 +02:00
< div class = "row" >
< div class = "col-md-6 mx-auto" >
2025-06-04 09:50:53 +02:00
< form class = "bg-white rounded-lg shadow-md p-6 transform hover:scale-105 transition-all duration-300 hover:shadow-xl border-t-4 border-purple-500" >
2025-06-04 09:46:25 +02:00
< div class = "mb-3" >
2025-06-04 09:50:53 +02:00
< label for = "name" class = "form-label text-purple-600" > Name< / label >
< input type = "text" class = "form-control focus:ring-2 focus:ring-purple-500 transition-all duration-300" id = "name" placeholder = "Your name" >
2025-06-04 09:46:25 +02:00
< / div >
< div class = "mb-3" >
2025-06-04 09:50:53 +02:00
< label for = "email" class = "form-label text-purple-600" > Email< / label >
< input type = "email" class = "form-control focus:ring-2 focus:ring-purple-500 transition-all duration-300" id = "email" placeholder = "Your email" >
2025-06-04 09:46:25 +02:00
< / div >
< div class = "mb-3" >
2025-06-04 09:50:53 +02:00
< label for = "message" class = "form-label text-purple-600" > Message< / label >
< textarea class = "form-control focus:ring-2 focus:ring-purple-500 transition-all duration-300" id = "message" rows = "4" placeholder = "Your message" > < / textarea >
2025-06-04 09:46:25 +02:00
< / div >
2025-06-04 09:50:53 +02:00
< button type = "submit" class = "btn btn-primary bg-gradient-to-r from-purple-600 to-pink-600 hover:from-purple-700 hover:to-pink-700 hover:scale-110 transition-transform duration-300 shadow-lg hover:shadow-xl" > Send Message< / button >
2025-06-04 09:46:25 +02:00
< / form >
< / div >
< / div >
< / div >
< / section >
<!-- Footer -->
2025-06-04 09:50:53 +02:00
< footer class = "bg-gradient-to-r from-purple-600 to-indigo-600 text-white py-4 relative" >
2025-06-04 09:46:25 +02:00
< div class = "container" >
< div class = "row" >
< div class = "col-md-6" >
2025-06-04 09:50:53 +02:00
< p class = "hover:text-pink-300 transition-colors duration-300" > © 2024 Your Brand. All rights reserved.< / p >
2025-06-04 09:46:25 +02:00
< / div >
< div class = "col-md-6 text-end" >
2025-06-04 09:50:53 +02:00
< a href = "#" class = "text-white me-3 hover:text-pink-300 transition-colors duration-300" > Privacy Policy< / a >
< a href = "#" class = "text-white me-3 hover:text-pink-300 transition-colors duration-300" > Terms of Service< / a >
< a href = "#" class = "text-white hover:text-pink-300 transition-colors duration-300" > Contact< / a >
2025-06-04 09:38:33 +02:00
< / div >
< / div >
< / div >
2025-06-04 09:46:25 +02:00
< / footer >
2025-06-04 09:38:33 +02:00
<!-- Bootstrap JS Bundle with Popper -->
< script src = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" > < / script >
<!-- Custom JavaScript -->
< script src = "js/script.js" > < / script >
2025-06-04 09:34:13 +02:00
< / body >
< / html >