Difference between revisions of "Forms"

From MyWiki
Jump to: navigation, search
Line 1: Line 1:
http://www.w3schools.com/html/html_forms.asp
+
http://www.w3schools.com/html/html_forms.asp<br>
 +
<source lang="html4strict">
 
  Text Fields
 
  Text Fields
 
  <input type="text"> defines a one-line input field that a user can enter text into:
 
  <input type="text"> defines a one-line input field that a user can enter text into:
Line 6: Line 7:
 
   Last name: <input type="text" name="lastname">
 
   Last name: <input type="text" name="lastname">
 
  </form>
 
  </form>
 +
</source>

Revision as of 16:33, 12 June 2014

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"><br>
  Last name: <input type="text" name="lastname">
 </form>