Read: 13 - Gr8-Dayne/seattle-301d60 GitHub Wiki

Sending Form Data

We all now about forms, but here are some interesting ways you can utilize the information by sending them. Take a look below:

Commonly used syntax:

<form action="https://example.com">

<form action="/somewhere_else">

<form>

<form action="#">

Put it all together:

<form action="http://www.foo.com" method="(see below)">
  <div>
    <label for="say">What greeting do you want to say?</label>
    <input name="say" id="say" value="Hi">
  </div>
  <div>
    <label for="to">Who do you want to say it to?</label>
    <input name="to" id="to" value="Mom">
  </div>
  <div>
    <button>Send my greetings</button>
  </div>
</form>

see below = GET || POST

⚠️ **GitHub.com Fallback** ⚠️