![]()  | 
| Different input types in HTML | 
here you learn about Different input types html with pythonwithyp , input type text , password ,button, checkbox etc
Different input types in HTML
<input type="text">  | define a text field  | 
<input type="button">  | Used for create button  | 
<input type="checkbox">  | Create checkbox  | 
<input type="image">  | Define Image as button  | 
<input type="hidden">  | Is use for hide content  | 
<input type="search">  | Is use create search bar ,blank box  | 
<input type="email">  | Define an input field for email  | 
<input type="submit">  | Used as submit button for submit response to server  | 
<input type="file">  | Is used for to select file from your device etc  | 
<input type="week">  | Is used for enter the date with week without time zone  | 
<input type="url">  | Is used for entering url  | 
<input type="color">  | Define input field with specific color  | 
<input type="password">  | Is used for password input  | 
<input type="radio">  | Is define for select one option  | 
<input type="range">  | Define a range control  | 
<input type="date">  | Is used for select date as input  | 
<input type="tel">  | Is defined for entering telephone number  | 
<input type="time">  | Define for entering time not time zone  | 
<input type="month">  | Define a control with month and year without time zone  | 
<input type="datetime-local">  | Define input field for entering date without time zone  | 
<input type="reset">  | Define for reset button for rest all value  | 
<input type="number">  | Define entering number in input field  | 
