Type= “Month”
If you are asking the user for a month, you can use an input element and give the type attribute a value of month.
Type= “ Week”
If you are asking the user for a Week, you can use an input element and give the type attribute a value of week.
Type= “ Time”
If you are asking the user for a time, you can use an input element and give the type attribute a value of time.
Type= “ Number”
If you are asking the user for a number, you can use an input element and give the type attribute a value of number.
Some smart phones also optimize their keyboard to display the keys you are most likely to need when entering a number.
Type= “ tel”
If you are asking the user for a telephone number, you can use an input element and give the type attribute a value of tel.
Type= “ Color”
If you are asking the user for a color, you can use an input element and give the type attribute a value of color.
Type= “ Range”
If you are asking the user for a rate anything, you can use an input element and give the type attribute a value of range.