HTML input tags, which are generally used in forms, help users who come to the page to enter data.
A form that will simply collect users’ contact information requires name, surname, phone number, email address. There are input tags where users can enter this information through web pages. There are also customized versions of the input tags, which are generally used within the <form>
tag.
<input type="button" value="">
<input type="checkbox" name="" id="">
<input type="color" name="" id="">
<input type="email" name="" id="">
File input is used to upload files via local device.
<input type="file" name="" id="">
<input type="hidden" name="">
It is only used for entering numeric data, it does not support entering letters or any special characters.
<input type="number" name="" id="">
<input type="password" name="" id="">
The radio input tag is used to select one of the multiple options.
<input type="radio" name="" id="">
<input type="range" name="" id="">
<input type="reset" value="">
<input type="search" name="" id="">
<input type="submit" value="">
<input type="tel" name="" id="">
<input type="text" name="" id="">
<input type="url" name="" id="">
<input type="time" name="" id="">
<input type="month" name="" id="">
<input type="week" name="" id="">
<input type="date" name="" id="">
<input type="datetime" name="" id="">
<input type="datetime-local" name="" id="">
<input type="image" src="" alt="">