The following example shows various input types.
01
<
html
>
02
body
03
h2
>Input Tags</
04
Input type 'text' : <
input
type
=
"text"
name
"user"
value
"BTC"
/><
br
05
Input type 'password' : <
"password"
"pwd"
06
Input type 'checkbox' : <
"checkbox"
"check1"
"1"
>BTC</
><
07
Input type 'radio' : <
"radio"
"radio1"
"2"
08
Input type 'submit' : <
"submit"
"SubmitForm"
09
Input type 'button' : <
"button"
"Button"
10
Input type 'file' : <
"file"
"file1"
11
Input type 'hidden' : <
"hidden"
"hidden1"
12
13
</
14