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 | DigiToraNext</title>
<style>
body { font-family: Arial, sans-serif; background:#f7f7f7; margin:0; padding:0; }
.container { max-width: 800px; margin: 40px auto; background:#fff; padding: 30px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
h1 { margin-bottom: 10px; }
p { color:#555; }
form { margin-top: 25px; }
label { display:block; margin-bottom:6px; font-weight:bold; }
input, textarea { width:100%; padding:10px; margin-bottom:15px; border:1px solid #ccc; border-radius:4px; }
button { background:#000; color:#fff; padding:12px 20px; border:none; border-radius:4px; cursor:pointer; }
button:hover { opacity:0.9; }
</style>
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<p>
Have a question, need support, or want to work with us? We’d love to hear from you.
Please fill out the form below and our team at <strong>DigiToraNext</strong> will get back to you as soon as possible.
</p>
<form action="send.php" method="post">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" required />
<label for="email">Email Address</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required />
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" placeholder="Subject" />
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" placeholder="Write your message here..." required></textarea>
<button type="submit">Send Message</button>
</form>
<p style="margin-top:20px; font-size:14px; color:#777;">
You can also contact us directly at:<br>
📧 Email: <strong>support@digitoranext.com</strong>
</p>
</div>
</body>
</html>