tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 HTML > Basic > Input Tags

Input Tags 

The following example shows various input types.

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

It gives the following output,
File Name  :  
source/HTML/basic_tags/input_tags.html 

Input Tags

Input type 'text' :
Input type 'password' :
Input type 'checkbox' : BTC
Input type 'radio' : BTC
Input type 'submit' :
Input type 'button' :
Input type 'file' :
Input type 'hidden' :



 
  


  
bl  br