Contact (Accessible / ARIA) | Copy-paste forms | MyFormConnect
← All forms

Contact (Accessible / ARIA)

Contact form with basic ARIA labels for accessibility.

Endpoint

POST https://myformconnect.io/f/YOUR_FORM_ID

Replace YOUR_FORM_ID with your form ID from MyFormConnect.

Copy-paste HTML
<form action="https://myformconnect.io/f/YOUR_FORM_ID" method="POST" aria-label="Contact form">
  <label for="name">Name</label>
  <input type="text" id="name" name="name" placeholder="Your name" required aria-required="true">
  <label for="email">Email</label>
  <input type="email" id="email" name="email" placeholder="Email" required aria-required="true">
  <label for="msg">Message</label>
  <textarea id="msg" name="message" placeholder="Message" required aria-required="true"></textarea>
  <button type="submit">Send</button>
</form>