Forms

From MyWiki
Revision as of 16:31, 12 June 2014 by George2 (Talk | contribs)

Jump to: navigation, search

http://www.w3schools.com/html/html_forms.asp

Text Fields
<input type="text"> defines a one-line input field that a user can enter text into:
<form>
First name: <input type="text" name="firstname">
Last name: <input type="text" name="lastname"> </form>