Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Contact Form</title> </head> <body> <form action="mailto:recipient@example.com" method="get" enctype="text/plain"> Subject:<br> <input type="text" name="subject" placeholder="Your Name"><br> Email:<br> <input type="email" name="email" placeholder="Your Email"><br> Message:<br> <textarea name="body" rows="5" cols="30" placeholder="Your Message"></textarea><br> <input type="submit" value="Send"> </form> </body> </html>