Contact US

<div class="contact-us-container">
    <h1>Contact Us</h1>
    <p>If you have any queries, feel free to contact us using the form below.</p>
    <form action="YOUR_FORM_SUBMISSION_LINK" method="POST">
        <label for="name">Name:</label>
        <input type="text" id="name" name="name" required>

        <label for="email">Email:</label>
        <input type="email" id="email" name="email" required>

        <label for="message">Message:</label>
        <textarea id="message" name="message" required></textarea>

        <button type="submit">Send</button>
    </form>
</div>

.contact-us-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.contact-us-container h1 {
    color: #333;
}

.contact-us-container label {
    margin-top: 10px;
    display: block;
    font-weight: bold;
}

.contact-us-container input[type="text"],
.contact-us-container input[type="email"],
.contact-us-container textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

.contact-us-container button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
}

.contact-us-container button:hover {
    background-color: #003580;
}

Last modified: May 8, 2024

Comments are closed.