| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Bath Accounting Professionals | Expert Accountants in Bath, UK</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"> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: '#1a365d', |
| secondary: '#2c5282', |
| accent: '#4299e1', |
| bath: '#3b82f6', |
| } |
| } |
| } |
| } |
| </script> |
| <style> |
| .hero { |
| background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), |
| url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| |
| .service-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); |
| } |
| |
| .testimonial-card { |
| transition: all 0.3s ease; |
| } |
| |
| .testimonial-card:hover { |
| transform: scale(1.03); |
| } |
| |
| .map-container { |
| height: 400px; |
| width: 100%; |
| } |
| |
| .nav-link { |
| position: relative; |
| } |
| |
| .nav-link::after { |
| content: ''; |
| position: absolute; |
| width: 0; |
| height: 2px; |
| bottom: -2px; |
| left: 0; |
| background-color: #4299e1; |
| transition: width 0.3s ease; |
| } |
| |
| .nav-link:hover::after { |
| width: 100%; |
| } |
| </style> |
| </head> |
| <body class="font-sans antialiased text-gray-800"> |
| |
| <nav class="bg-white shadow-md sticky top-0 z-50"> |
| <div class="container mx-auto px-6 py-3"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center"> |
| <i class="fas fa-calculator text-3xl text-accent mr-2"></i> |
| <span class="text-xl font-bold text-primary">Bath Accounting</span> |
| </div> |
| <div class="hidden md:flex space-x-8"> |
| <a href="#home" class="nav-link text-primary font-medium">Home</a> |
| <a href="#services" class="nav-link text-primary font-medium">Services</a> |
| <a href="#about" class="nav-link text-primary font-medium">About</a> |
| <a href="#testimonials" class="nav-link text-primary font-medium">Testimonials</a> |
| <a href="#contact" class="nav-link text-primary font-medium">Contact</a> |
| </div> |
| <button class="md:hidden focus:outline-none" id="menu-toggle"> |
| <i class="fas fa-bars text-2xl text-primary"></i> |
| </button> |
| </div> |
| |
| <div class="md:hidden hidden mt-4" id="mobile-menu"> |
| <a href="#home" class="block py-2 text-primary">Home</a> |
| <a href="#services" class="block py-2 text-primary">Services</a> |
| <a href="#about" class="block py-2 text-primary">About</a> |
| <a href="#testimonials" class="block py-2 text-primary">Testimonials</a> |
| <a href="#contact" class="block py-2 text-primary">Contact</a> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section id="home" class="hero text-white py-20 md:py-32"> |
| <div class="container mx-auto px-6 text-center"> |
| <h1 class="text-4xl md:text-6xl font-bold mb-6">Expert Accounting Services in Bath</h1> |
| <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Personalised financial solutions for businesses and individuals in Bath and surrounding areas.</p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <a href="#contact" class="bg-accent hover:bg-blue-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300">Get a Free Consultation</a> |
| <a href="#services" class="bg-transparent hover:bg-white hover:text-primary border-2 border-white text-white font-bold py-3 px-6 rounded-lg transition duration-300">Our Services</a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="bg-gray-100 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="bg-white p-6 rounded-lg shadow-md"> |
| <div class="text-4xl font-bold text-accent mb-2">15+</div> |
| <div class="text-gray-600">Years of Experience</div> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow-md"> |
| <div class="text-4xl font-bold text-accent mb-2">500+</div> |
| <div class="text-gray-600">Satisfied Clients</div> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow-md"> |
| <div class="text-4xl font-bold text-accent mb-2">24/7</div> |
| <div class="text-gray-600">Client Support</div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="services" class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-primary mb-4">Our Accounting Services</h2> |
| <div class="w-24 h-1 bg-accent mx-auto"></div> |
| <p class="max-w-2xl mx-auto mt-4 text-gray-600">Comprehensive financial services tailored to your needs in Bath and beyond.</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="service-card bg-gray-50 p-8 rounded-lg transition duration-300"> |
| <div class="text-accent text-4xl mb-4"> |
| <i class="fas fa-briefcase"></i> |
| </div> |
| <h3 class="text-xl font-bold text-primary mb-3">Business Accounting</h3> |
| <p class="text-gray-600 mb-4">Complete financial management for businesses of all sizes in Bath, from bookkeeping to strategic planning.</p> |
| <ul class="space-y-2 mb-6"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Tax planning & compliance</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Payroll services</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Financial reporting</span> |
| </li> |
| </ul> |
| <a href="#contact" class="text-accent font-medium hover:underline">Learn more →</a> |
| </div> |
| |
| |
| <div class="service-card bg-gray-50 p-8 rounded-lg transition duration-300"> |
| <div class="text-accent text-4xl mb-4"> |
| <i class="fas fa-user-tie"></i> |
| </div> |
| <h3 class="text-xl font-bold text-primary mb-3">Personal Tax Services</h3> |
| <p class="text-gray-600 mb-4">Expert guidance for individuals on tax matters, ensuring compliance and maximising your returns.</p> |
| <ul class="space-y-2 mb-6"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Self-assessment tax returns</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Capital gains tax planning</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Inheritance tax advice</span> |
| </li> |
| </ul> |
| <a href="#contact" class="text-accent font-medium hover:underline">Learn more →</a> |
| </div> |
| |
| |
| <div class="service-card bg-gray-50 p-8 rounded-lg transition duration-300"> |
| <div class="text-accent text-4xl mb-4"> |
| <i class="fas fa-chart-line"></i> |
| </div> |
| <h3 class="text-xl font-bold text-primary mb-3">Business Advisory</h3> |
| <p class="text-gray-600 mb-4">Strategic financial advice to help your Bath-based business grow and thrive in competitive markets.</p> |
| <ul class="space-y-2 mb-6"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Cash flow management</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Business planning</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> |
| <span>Financial forecasting</span> |
| </li> |
| </ul> |
| <a href="#contact" class="text-accent font-medium hover:underline">Learn more →</a> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-20 bg-gray-100"> |
| <div class="container mx-auto px-6"> |
| <div class="flex flex-col lg:flex-row items-center"> |
| <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> |
| <h2 class="text-3xl md:text-4xl font-bold text-primary mb-6">About Bath Accounting</h2> |
| <div class="w-24 h-1 bg-accent mb-6"></div> |
| <p class="text-gray-600 mb-4">Founded in Bath over 15 years ago, we've been providing exceptional accounting services to businesses and individuals throughout the South West.</p> |
| <p class="text-gray-600 mb-6">Our team of qualified accountants combines technical expertise with a deep understanding of the local Bath economy to deliver tailored financial solutions.</p> |
| <div class="space-y-4"> |
| <div class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> |
| <div> |
| <h4 class="font-bold text-primary">Local Expertise</h4> |
| <p class="text-gray-600">We understand the unique financial landscape of Bath and surrounding areas.</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> |
| <div> |
| <h4 class="font-bold text-primary">Personal Approach</h4> |
| <p class="text-gray-600">We take time to understand your specific needs and goals.</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> |
| <div> |
| <h4 class="font-bold text-primary">Proactive Advice</h4> |
| <p class="text-gray-600">We don't just report numbers - we help you interpret them for better decisions.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| <div class="lg:w-1/2"> |
| <div class="bg-white p-8 rounded-lg shadow-md"> |
| <img src="https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Bath Accounting Team" class="rounded-lg mb-6 w-full h-auto"> |
| <h3 class="text-2xl font-bold text-primary mb-4">Our Commitment to Bath</h3> |
| <p class="text-gray-600 mb-4">As proud members of the Bath business community, we're committed to supporting local enterprises and helping them navigate financial challenges.</p> |
| <p class="text-gray-600">We regularly partner with Bath Chamber of Commerce and other local organizations to promote economic growth in our city.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="testimonials" class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-primary mb-4">What Our Clients Say</h2> |
| <div class="w-24 h-1 bg-accent mx-auto"></div> |
| <p class="max-w-2xl mx-auto mt-4 text-gray-600">Hear from businesses and individuals in Bath who have benefited from our services.</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="testimonial-card bg-gray-50 p-8 rounded-lg"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl mr-1"> |
| <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-600 italic mb-6">"Bath Accounting has transformed our financial management. Their local knowledge of Bath's business environment is invaluable."</p> |
| <div class="flex items-center"> |
| <div class="bg-accent text-white rounded-full w-12 h-12 flex items-center justify-center font-bold mr-4">JS</div> |
| <div> |
| <h4 class="font-bold text-primary">James Smith</h4> |
| <p class="text-gray-500 text-sm">Owner, Bath Boutique Hotel</p> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="testimonial-card bg-gray-50 p-8 rounded-lg"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl mr-1"> |
| <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-600 italic mb-6">"As a freelancer in Bath, their personal tax service has saved me both time and money. Highly recommended!"</p> |
| <div class="flex items-center"> |
| <div class="bg-accent text-white rounded-full w-12 h-12 flex items-center justify-center font-bold mr-4">EM</div> |
| <div> |
| <h4 class="font-bold text-primary">Emma Wilson</h4> |
| <p class="text-gray-500 text-sm">Graphic Designer</p> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="testimonial-card bg-gray-50 p-8 rounded-lg"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-400 text-xl mr-1"> |
| <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-600 italic mb-6">"Their business advisory service helped us navigate a difficult period and come out stronger. A true Bath success story."</p> |
| <div class="flex items-center"> |
| <div class="bg-accent text-white rounded-full w-12 h-12 flex items-center justify-center font-bold mr-4">TR</div> |
| <div> |
| <h4 class="font-bold text-primary">Thomas Roberts</h4> |
| <p class="text-gray-500 text-sm">Director, Bath Tech Solutions</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20 bg-gray-100"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-primary mb-4">Contact Our Bath Office</h2> |
| <div class="w-24 h-1 bg-accent mx-auto"></div> |
| <p class="max-w-2xl mx-auto mt-4 text-gray-600">Get in touch to discuss how we can help with your accounting needs in Bath.</p> |
| </div> |
| |
| <div class="flex flex-col lg:flex-row gap-12"> |
| <div class="lg:w-1/2"> |
| <div class="bg-white p-8 rounded-lg shadow-md"> |
| <h3 class="text-2xl font-bold text-primary mb-6">Send Us a Message</h3> |
| <form id="contactForm" class="space-y-6"> |
| <div> |
| <label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label> |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent focus:border-transparent" required> |
| </div> |
| <div> |
| <label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label> |
| <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent focus:border-transparent" required> |
| </div> |
| <div> |
| <label for="phone" class="block text-gray-700 font-medium mb-2">Phone Number</label> |
| <input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent focus:border-transparent"> |
| </div> |
| <div> |
| <label for="service" class="block text-gray-700 font-medium mb-2">Service Interested In</label> |
| <select id="service" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent focus:border-transparent"> |
| <option value="">Select a service</option> |
| <option value="Business Accounting">Business Accounting</option> |
| <option value="Personal Tax Services">Personal Tax Services</option> |
| <option value="Business Advisory">Business Advisory</option> |
| <option value="Other">Other</option> |
| </select> |
| </div> |
| <div> |
| <label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label> |
| <textarea id="message" rows="5" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-accent focus:border-transparent" required></textarea> |
| </div> |
| <button type="submit" class="bg-accent hover:bg-blue-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300 w-full">Send Message</button> |
| </form> |
| </div> |
| </div> |
| |
| <div class="lg:w-1/2"> |
| <div class="bg-white p-8 rounded-lg shadow-md mb-8"> |
| <h3 class="text-2xl font-bold text-primary mb-6">Our Bath Office</h3> |
| <div class="space-y-4"> |
| <div class="flex items-start"> |
| <i class="fas fa-map-marker-alt text-accent mt-1 mr-3"></i> |
| <div> |
| <h4 class="font-bold text-primary">Address</h4> |
| <p class="text-gray-600">12 Queen Square, Bath BA1 2HN, UK</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <i class="fas fa-phone-alt text-accent mt-1 mr-3"></i> |
| <div> |
| <h4 class="font-bold text-primary">Phone</h4> |
| <p class="text-gray-600">01225 123456</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <i class="fas fa-envelope text-accent mt-1 mr-3"></i> |
| <div> |
| <h4 class="font-bold text-primary">Email</h4> |
| <p class="text-gray-600">info@bathaccounting.co.uk</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <i class="fas fa-clock text-accent mt-1 mr-3"></i> |
| <div> |
| <h4 class="font-bold text-primary">Opening Hours</h4> |
| <p class="text-gray-600">Monday-Friday: 9am-5pm</p> |
| <p class="text-gray-600">Saturday: By appointment</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="map-container rounded-lg overflow-hidden shadow-md"> |
| <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2490.724224853135!2d-2.360682923490137!3d51.38277197172448!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4871810a6c5b3a0d%3A0x5a7c46eb7c1b3e8b!2sQueen%20Square%2C%20Bath%20BA1%202HN%2C%20UK!5e0!3m2!1sen!2sus!4v1689875436783!5m2!1sen!2sus" width="100%" height="100%" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-primary text-white"> |
| <div class="container mx-auto px-6 text-center"> |
| <h2 class="text-2xl md:text-3xl font-bold mb-6">Stay Updated with Bath Accounting News</h2> |
| <p class="max-w-2xl mx-auto mb-8">Subscribe to our newsletter for tax tips, financial insights, and updates relevant to Bath businesses.</p> |
| <form class="max-w-md mx-auto flex flex-col sm:flex-row gap-4"> |
| <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg focus:outline-none text-gray-800"> |
| <button type="submit" class="bg-accent hover:bg-blue-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300">Subscribe</button> |
| </form> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 text-white py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <div class="flex items-center mb-4"> |
| <i class="fas fa-calculator text-2xl text-accent mr-2"></i> |
| <span class="text-xl font-bold">Bath Accounting</span> |
| </div> |
| <p class="text-gray-400">Providing expert accounting services to the Bath community for over 15 years.</p> |
| <div class="flex space-x-4 mt-6"> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| <i class="fab fa-facebook-f"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| <i class="fab fa-twitter"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| <i class="fab fa-linkedin-in"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-4">Quick Links</h3> |
| <ul class="space-y-2"> |
| <li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> |
| <li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">Services</a></li> |
| <li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li> |
| <li><a href="#testimonials" class="text-gray-400 hover:text-white transition duration-300">Testimonials</a></li> |
| <li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-4">Services</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Business Accounting</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Personal Tax Services</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Business Advisory</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Payroll Services</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">VAT Returns</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-4">Legal</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms of Service</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Cookie Policy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Complaints Procedure</a></li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> |
| <p>© 2023 Bath Accounting. All rights reserved. Registered in England No. 12345678.</p> |
| <p class="mt-2">Bath Accounting is a trading name of Bath Financial Services Ltd.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| |
| <button id="backToTop" class="fixed bottom-8 right-8 bg-accent text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center opacity-0 invisible transition-all duration-300"> |
| <i class="fas fa-arrow-up"></i> |
| </button> |
|
|
| <script> |
| |
| document.getElementById('menu-toggle').addEventListener('click', function() { |
| const mobileMenu = document.getElementById('mobile-menu'); |
| mobileMenu.classList.toggle('hidden'); |
| }); |
| |
| |
| const backToTopButton = document.getElementById('backToTop'); |
| |
| window.addEventListener('scroll', function() { |
| if (window.pageYOffset > 300) { |
| backToTopButton.classList.remove('opacity-0', 'invisible'); |
| backToTopButton.classList.add('opacity-100', 'visible'); |
| } else { |
| backToTopButton.classList.remove('opacity-100', 'visible'); |
| backToTopButton.classList.add('opacity-0', 'invisible'); |
| } |
| }); |
| |
| backToTopButton.addEventListener('click', function() { |
| window.scrollTo({ |
| top: 0, |
| behavior: 'smooth' |
| }); |
| }); |
| |
| |
| document.getElementById('contactForm').addEventListener('submit', function(e) { |
| e.preventDefault(); |
| |
| |
| const name = document.getElementById('name').value; |
| const email = document.getElementById('email').value; |
| const phone = document.getElementById('phone').value; |
| const service = document.getElementById('service').value; |
| const message = document.getElementById('message').value; |
| |
| |
| |
| alert(`Thank you, ${name}! Your message has been received. We'll contact you soon about ${service || 'your enquiry'}.`); |
| |
| |
| this.reset(); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function(e) { |
| e.preventDefault(); |
| |
| const targetId = this.getAttribute('href'); |
| const targetElement = document.querySelector(targetId); |
| |
| if (targetElement) { |
| window.scrollTo({ |
| top: targetElement.offsetTop - 80, |
| behavior: 'smooth' |
| }); |
| |
| |
| const mobileMenu = document.getElementById('mobile-menu'); |
| if (!mobileMenu.classList.contains('hidden')) { |
| mobileMenu.classList.add('hidden'); |
| } |
| } |
| }); |
| }); |
| </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=IRUNHO/website-example-accountant-bath" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |