<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>ShreeDigital - Your Digital Partner</title>

    <!-- Tailwind CSS CDN -->

    <script src="https://cdn.tailwindcss.com"></script>

    <!-- Google Font - Inter -->

    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">

    <style>

        body {

            font-family: 'Inter', sans-serif;

        }

    </style>

</head>

<body class="bg-gray-50 text-gray-800 antialiased flex flex-col min-h-screen">


    <!-- Header Section -->

    <header class="bg-gradient-to-r from-blue-600 to-indigo-700 text-white shadow-lg py-4 md:py-6">

        <div class="container mx-auto px-4 flex justify-between items-center">

            <!-- Brand Logo/Name -->

            <a href="#" class="text-3xl font-bold tracking-tight rounded-md p-2 hover:bg-white hover:text-blue-600 transition-all duration-300">

                ShreeDigital

            </a>


            <!-- Navigation Menu (for larger screens) -->

            <nav class="hidden md:flex space-x-6">

                <a href="#home" class="text-white hover:text-blue-200 transition-colors duration-200 text-lg">Home</a>

                <a href="#services" class="text-white hover:text-blue-200 transition-colors duration-200 text-lg">Services</a>

                <a href="#about" class="text-white hover:text-blue-200 transition-colors duration-200 text-lg">About Us</a>

                <a href="#contact" class="text-white hover:text-blue-200 transition-colors duration-200 text-lg">Contact</a>

            </nav>


            <!-- Mobile Navigation Toggle (Hamburger Icon) -->

            <div class="md:hidden">

                <button id="mobile-menu-button" class="text-white focus:outline-none">

                    <svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">

                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>

                    </svg>

                </button>

            </div>

        </div>


        <!-- Mobile Menu (initially hidden) -->

        <div id="mobile-menu" class="md:hidden bg-blue-700 px-4 pt-2 pb-4 space-y-2 hidden">

            <a href="#home" class="block text-white hover:bg-blue-600 py-2 px-3 rounded-md transition-colors duration-200">Home</a>

            <a href="#services" class="block text-white hover:bg-blue-600 py-2 px-3 rounded-md transition-colors duration-200">Services</a>

            <a href="#about" class="block text-white hover:bg-blue-600 py-2 px-3 rounded-md transition-colors duration-200">About Us</a>

            <a href="#contact" class="block text-white hover:bg-blue-600 py-2 px-3 rounded-md transition-colors duration-200">Contact</a>

        </div>

    </header>


    <!-- Main Content Area -->

    <main class="container mx-auto px-4 py-8 flex-grow">

        <!-- Hero Section -->

        <section id="home" class="text-center py-16 md:py-24 bg-white shadow-xl rounded-xl mb-12">

            <h1 class="text-4xl md:text-6xl font-extrabold text-blue-700 mb-4">

                Empowering Your Digital Journey

            </h1>

            <p class="text-lg md:text-xl text-gray-600 max-w-3xl mx-auto mb-8">

                ShreeDigital offers innovative solutions for web development, digital marketing, and IT consulting to help your business thrive online.

            </p>

            <a href="#services" class="inline-block bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-full shadow-lg transform transition-all duration-300 hover:scale-105">

                Explore Our Services

            </a>

        </section>


        <!-- Services Section -->

        <section id="services" class="py-12 md:py-16">

            <h2 class="text-3xl md:text-4xl font-bold text-center text-blue-700 mb-10">Our Services</h2>

            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">

                <!-- Service Card 1 -->

                <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">

                    <h3 class="text-xl font-semibold text-gray-900 mb-3">Web Development</h3>

                    <p class="text-gray-600">

                        Crafting responsive, high-performance websites tailored to your business needs. From custom sites to e-commerce platforms.

                    </p>

                </div>

                <!-- Service Card 2 -->

                <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">

                    <h3 class="text-xl font-semibold text-gray-900 mb-3">Digital Marketing</h3>

                    <p class="text-gray-600">

                        Boosting your online presence with SEO, social media marketing, and targeted ad campaigns.

                    </p>

                </div>

                <!-- Service Card 3 -->

                <div class="bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-shadow duration-300">

                    <h3 class="text-xl font-semibold text-gray-900 mb-3">IT Consulting</h3>

                    <p class="text-gray-600">

                        Providing expert advice and solutions for your technology infrastructure and digital strategy.

                    </p>

                </div>

            </div>

        </section>


        <!-- About Us Section -->

        <section id="about" class="py-12 md:py-16 bg-white shadow-xl rounded-xl mt-12">

            <h2 class="text-3xl md:text-4xl font-bold text-center text-blue-700 mb-10">About ShreeDigital</h2>

            <div class="max-w-4xl mx-auto px-4 text-center">

                <p class="text-lg text-gray-700 mb-6">

                    ShreeDigital is dedicated to helping businesses, big and small, navigate the complexities of the digital world. Our team of experts brings a blend of creativity, technical prowess, and strategic insight to every project. We believe in building lasting relationships with our clients, providing solutions that drive real results.

                </p>

                <p class="text-lg text-gray-700">

                    Our mission is to innovate, collaborate, and deliver excellence, ensuring our clients achieve their digital goals with confidence.

                </p>

            </div>

        </section>


        <!-- Contact Section -->

        <section id="contact" class="py-12 md:py-16">

            <h2 class="text-3xl md:text-4xl font-bold text-center text-blue-700 mb-10">Get in Touch</h2>

            <div class="max-w-2xl mx-auto bg-white p-8 rounded-lg shadow-md">

                <form class="space-y-6">

                    <div>

                        <label for="name" class="block text-sm font-medium text-gray-700">Name</label>

                        <input type="text" id="name" name="name" class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm" placeholder="Your Name" required>

                    </div>

                    <div>

                        <label for="email" class="block text-sm font-medium text-gray-700">Email</label>

                        <input type="email" id="email" name="email" class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm" placeholder="your@example.com" required>

                    </div>

                    <div>

                        <label for="message" class="block text-sm font-medium text-gray-700">Message</label>

                        <textarea id="message" name="message" rows="4" class="mt-1 block w-full px-4 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm" placeholder="Your message..." required></textarea>

                    </div>

                    <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-4 rounded-md shadow-md transform transition-all duration-300 hover:scale-105 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2">

                        Send Message

                    </button>

                </form>

            </div>

        </section>

    </main>


    <!-- Footer Section -->

    <footer class="bg-gray-800 text-white py-6 mt-12">

        <div class="container mx-auto px-4 text-center text-gray-400">

            <p>&copy; 2025 ShreeDigital. All rights reserved.</p>

            <p class="mt-2">

                <a href="#" class="hover:text-white transition-colors duration-200">Privacy Policy</a> |

                <a href="#" class="hover:text-white transition-colors duration-200">Terms of Service</a>

            </p>

        </div>

    </footer>


    <!-- JavaScript for Mobile Menu Toggle -->

    <script>

        document.getElementById('mobile-menu-button').addEventListener('click', function() {

            const mobileMenu = document.getElementById('mobile-menu');

            mobileMenu.classList.toggle('hidden');

        });


        // Close mobile menu when a link is clicked

        document.querySelectorAll('#mobile-menu a').forEach(item => {

            item.addEventListener('click', () => {

                document.getElementById('mobile-menu').classList.add('hidden');

            });

        });

    </script>

</body>

</html>

No comments:

Post a Comment

Aadhaar Update

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="view...