Jump to content

[HTML] Text fields


blasphemy.
 Share

Recommended Posts

Below are a few examples of HTML text fields.

HTML
<input type="text" size="10" maxlength="40" name="name"> --> regular text field
<input type="password" size="10" maxlength="10" name="pass"> --> password field
<input type="radio" name="color" value="red"> --> radio button
<input type="checkbox" name="check" value="yes"> --> checkbox 
<select name="select">  --> simple select list / drop-down list
   <option>Html 4.1</option> 
   <option>Html 5</option> 
</select>
Edited by Cdorsu
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.