To submit a form, we use action attribute and set method to POST

For now, we can use Formspree to help us collect the form.

<form action="<https://formspree.io/f/xwkypnbv>" method="POST">
  <input type="text" placeholder="Name" name="name" />
  <input type="text" placeholder="Email" name="email" />
  <button type="submit">submit</button>
</form>