🌐
contact.html
Back
📝 Html ⚡ Executable Ctrl+S: Save • Ctrl+R: Run • Ctrl+F: Find
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Contact</title> <style> body { font-family: Arial; padding: 40px; background:#202225; color:white; } .box { max-width: 600px; margin:auto; } input, textarea { width: 100%; padding: 10px; margin: 10px 0; border-radius: 6px; border:none; } button { padding: 10px 20px; background:#4a90e2; border:none; color:white; border-radius:6px; cursor:pointer; } .msg { margin-top:20px; padding:10px; border-radius:6px; } .success { background:#4caf50; } .error { background:#e53935; } </style> </head> <body> <div class="box"> <h1>Contact</h1> <p>Send a message using this form.</p> <!-- CONTACT FORM --> <form action="send.php" method="POST"> <input type="text" name="name" placeholder="Your Name" required> <input type="email" name="email" placeholder="Your Email" required> <textarea name="message" rows="6" placeholder="Your Message" required></textarea> <button type="submit">Send Message</button> </form> </div> </body> </html>