Creating contact forms on static HTML websites | Web Development Blog

PHOTO EMBED

Tue Mar 15 2022 11:54:28 GMT+0000 (Coordinated Universal Time)

Saved by @WinWebDev #html

<form action="https://formspree.io/your@email.com" method="POST">
  <label for="name">Name:</label>
  <input type="text" id="name" name="user_name" />
  <label for="mail">E-mail:</label>
  <input type="email" id="mail" name="user_mail" />
  <label for="msg">Message:</label>
  <textarea id="msg" name="user_message"></textarea>
  <button type="submit">Send your message</button>
</form>
content_copyCOPY

https://stevencotterill.com/articles/creating-contact-forms-on-static-html-websites/