Contact us

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contact Us</title>
    <link rel="stylesheet" href="style.css"> <!-- Link to your CSS file for styling -->
</head>
<body>
    <header>
        <h1>Contact Us</h1>
    </header>

    <main>
        <section class="contact-form-section">
            <h2>Send us a message</h2>
            <form action="submit_form.php" method="POST"> <!-- Replace submit_form.php with your backend script -->
                <div class="form-group">
                    <label for="name">Name:</label>
                    <input type="text" id="name" name="name" required>
                </div>
                <div class="form-group">
                    <label for="email">Email:</label>
                    <input type="email" id="email" name="email" required>
                </div>
                <div class="form-group">
                    <label for="subject">Subject:</label>
                    <input type="text" id="subject" name="subject">
                </div>
                <div class="form-group">
                    <label for="message">Message:</label>
                    <textarea id="message" name="message" rows="5" required></textarea>
                </div>
                <button type="submit">Submit</button>
            </form>
        </section>

        <section class="contact-info-section">
            <h2>Our Contact Information</h2>
            <p><strong>Address:</strong> louhajong,munshigonj, Dhaka 1253</p>
            <p><strong>Phone:</strong>+8801982872375</p>
            <p><strong>Email:</strong> mdsojibhossain4200@gmail.com</p>
            <p><strong>Business Hours:</strong> Monday - Friday, 9:00 AM - 5:00 PM</p>
        </section>
    </main>

    <footer>
        <p>&copy;www.lovestory75.blogspot.com. All rights reserved.</p>
    </footer>
</body>
</html>