<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Tripambitions</title>
<style>
.contact-form {
max-width: 600px;
margin: 20px auto;
padding: 25px;
background: #ffffff;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0,0,0,0.12);
font-family: Arial, sans-serif;
}
.contact-form h2 {
text-align: center;
color: #2e7d32;
margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
margin: 8px 0 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 15px;
box-sizing: border-box;
}
.contact-form textarea {
height: 130px;
resize: vertical;
}
.contact-form button {
width: 100%;
padding: 13px;
background: #2e7d32;
color: white;
border: none;
border-radius: 5px;
font-size: 17px;
cursor: pointer;
}
.contact-form button:hover {
background: #1b5e20;
}
</style>
</head>
<body>
<div class="contact-form">
<h2>Contact Us</h2>
<form action="https://formsubmit.co/tripambitions@gmail.com" method="POST">
<!-- Email Subject -->
<input type="hidden" name="_subject" value="New Contact Enquiry - Tripambitions">
<!-- Disable Captcha -->
<input type="hidden" name="_captcha" value="false">
<!-- Redirect after submission -->
<input type="hidden" name="_next" value="https://www.tripambitions.com/thank-you.html">
<!-- Name -->
<input
type="text"
name="name"
placeholder="Your Name"
required
>
<!-- Email -->
<input
type="email"
name="email"
placeholder="Your Email ID"
required
>
<!-- Contact Number -->
<input
type="tel"
name="contact_number"
placeholder="Your Contact Number"
required
>
<!-- Message -->
<textarea
name="message"
placeholder="Write your message here..."
required
></textarea>
<!-- Submit Button -->
<button type="submit">Send Message</button>
</form>
</div>
</body>
</html>