The vast majority of the information you collect from users will be through input.
Hidden inputs contain information that you want to be included in the form, but are not to be entered by the user. You may want to specify the recipient (yourself) in a hidden field.
<input type="hidden" name="recipient" value="youremail@yourdo- main.ext" />
Text inputs create single line text boxes into which your users can enter information, such as their email address.
<input type="text" name="email" />
Radio buttons must have the same name. Only one can be selected at once.
<input type="radio" name="color" value="red"/>Red<br /> <input type="radio" name="color" value="blue"/>Blue<br /> <input type="radio" name="color" value="yellow"/>Yellow<br />