forked from phongvdoan/seattle-301d60
-
Notifications
You must be signed in to change notification settings - Fork 0
Read: 13
Dayne edited this page Dec 18, 2019
·
1 revision
We all now about forms, but here are some interesting ways you can utilize the information by sending them. Take a look below:
<form action="https://example.com">
<form action="/somewhere_else">
<form>
<form action="#">
<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