Simple page

simple_page
simple page
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Modern Header and Footer</title>
    <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body>
    <!-- Header -->
    <header class="bg-light shadow-sm py-3">
        <div class="container">
            <nav class="navbar navbar-expand-lg navbar-light">
                <a class="navbar-brand" href="#">BrandName</a>
                <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
                    <span class="navbar-toggler-icon"></span>
                </button>
                <div class="collapse navbar-collapse" id="navbarNav">
                    <ul class="navbar-nav ml-auto">
                        <li class="nav-item">
                            <a class="nav-link" href="#">Home</a>
                        </li>
                        <li class="nav-item">
                            <a class="nav-link" href="#">About</a>
                        </li>
                        <li class="nav-item">
                            <a class="nav-link" href="#">Services</a>
                        </li>
                        <li class="nav-item">
                            <a class="nav-link" href="#">Contact</a>
                        </li>
                    </ul>
                </div>
            </nav>
        </div>
    </header>

    <!-- Main Content -->
    <main class="py-5">
        <div class="container">
            <h1 class="mb-4">Welcome to Our Website</h1>
            <p>This is a simple webpage with a modern header and footer. Customize this area with your own content.</p>
        </div>
    </main>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-10">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-8">
                <!-- Column 1 -->
                <div>
                    <h5 class="text-xl font-semibold mb-4">About Us</h5>
                    <p class="text-gray-400">We are a company dedicated to providing the best services in the industry. Contact us for more information.</p>
                </div>
                <!-- Column 2 -->
                <div>
                    <h5 class="text-xl font-semibold mb-4">Quick Links</h5>
                    <ul class="list-none">
                        <li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Home</a></li>
                        <li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">About</a></li>
                        <li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Services</a></li>
                        <li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Contact</a></li>
                    </ul>
                </div>
                <!-- Column 3 -->
                <div>
                    <h5 class="text-xl font-semibold mb-4">Services</h5>
                    <ul class="list-none">
                        <li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Consulting</a></li>
                        <li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Development</a></li>
                        <li class="mb-2"><a href="#" class="text-gray-400 hover:text-yellow-400">Design</a></li>
                    </ul>
                </div>
                <!-- Column 4 -->
                <div>
                    <h5 class="text-xl font-semibold mb-4">Contact Us</h5>
                    <p class="text-gray-400">1234 Street Name, City, State, 56789</p>
                    <p class="text-gray-400">Email: [email protected]</p>
                    <p class="text-gray-400">Phone: (123) 456-7890</p>
                </div>
            </div>
        </div>
        <div class="text-center mt-8 border-t border-gray-700 pt-4">
            <p class="text-gray-400">&copy; 2024 BrandName. All rights reserved.</p>
            <p class="text-gray-400">Designed by Your Name.</p>
        </div>
    </footer>

    <!-- Bootstrap JS and dependencies -->
    <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>