Untitled

 avatar
unknown
plain_text
2 months ago
3.7 kB
1
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Law Firm Website</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
        }

        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px 0;
            text-align: center;
        }

        header h1 {
            margin: 0;
        }

        nav {
            background-color: #34495e;
            padding: 10px 0;
            text-align: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 16px;
        }

        nav a:hover {
            text-decoration: underline;
        }

        .hero {
            background-image: url('law-firm.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .hero h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 18px;
        }

        .container {
            padding: 20px;
            max-width: 1200px;
            margin: auto;
        }

        .services, .about {
            margin-bottom: 40px;
        }

        .services h2, .about h2 {
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .services ul {
            list-style: none;
            padding: 0;
        }

        .services ul li {
            background-color: #ecf0f1;
            padding: 10px;
            margin-bottom: 10px;
            border-left: 5px solid #3498db;
        }

        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 10px 0;
        }

        footer p {
            margin: 0;
        }
    </style>
</head>
<body>
    <header>
        <h1>Justice & Partners Law Firm</h1>
    </header>

    <nav>
        <a href="#about">About Us</a>
        <a href="#services">Services</a>
        <a href="#contact">Contact</a>
    </nav>

    <div class="hero">
        <h2>Experienced. Professional. Dedicated.</h2>
        <p>Providing top-notch legal services tailored to your needs.</p>
    </div>

    <div class="container">
        <section id="about" class="about">
            <h2>About Us</h2>
            <p>At Justice & Partners, we have a proven track record of delivering exceptional legal counsel. Our team of experienced attorneys specializes in various areas of law, ensuring that our clients receive comprehensive and reliable representation.</p>
        </section>

        <section id="services" class="services">
            <h2>Our Services</h2>
            <ul>
                <li>Corporate Law</li>
                <li>Family Law</li>
                <li>Criminal Defense</li>
                <li>Intellectual Property</li>
                <li>Real Estate Law</li>
                <li>Employment Law</li>
            </ul>
        </section>

        <section id="contact">
            <h2>Contact Us</h2>
            <p>Phone: (123) 456-7890</p>
            <p>Email: info@justicepartners.com</p>
            <p>Address: 123 Justice Lane, Legal City, Lawland</p>
        </section>
    </div>

    <footer>
        <p>&copy; 2024 Justice & Partners Law Firm. All Rights Reserved.</p>
    </footer>
</body>
</html>
Editor is loading...
Leave a Comment