Input
Want to make your web page interactive? Then the most useful html element to know about is <input>
22 different things are made using <input>:
- input type='checkbox'
- input type="radio"
- input type="color"
The next three items can be used to collect a date, a time or a date and a time:
When a form collects a password it usually hides the input so it can't be seen by someone standing nearby:
There is a special version of input called a slider:
There are two pages on this site that use them:
The 'file' input type is used to choose a file to upload:
The 'number' input type works like this:
Other Input options
- input type='button'
But nowadays we use <button> instead.