Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
37formmethod_email.html
37formmethod_email.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Mailto with GET</title> </head> <body> <form action="mailto: w3@mymail.com" method="GET" enctype="application/x-www-form-urlencoded"> Title: <br><input type="Text" name="subject" size="30"> <br><br> Message: <br><textarea name="body" cols="30" rows="3"></textarea> <br><br> <button type="submit">Send to email client</button> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code