## Assignment 01 # List Of New Input Types In HTML 5 1. **DateTime** It allows the user to select a date and time along with time zone <input type="date"> 2. **time** It allows the user to enter time. <input type="datetime"> 3. **DateTime-local** It allows the user to select a local date and time <input type="datetime-local"> 4. **week** It allows the user to select a week and year from a drop-down calendar. <input type="week"> 5. **month** It allows the user to select a month and year from a drop-down calendar. <input type="month"> 6. **email** It allows the user to enter an e-mail address. <input type="email"> 7. **tel** It allows the user to enter the phone number with a specific pattern. <input type="tel"> 8. **URL** It allows the user to enter a website URL <input type="url"> 9. **search** It's a text field for entering a search string <input type="search"> 10. **range** It allows the user to range the value with the slider. <input type="range"> 11. **number** It allows the user to enter a numeric value with the increase and decrease arrow. <input type="number"> 12. **color** It allows the user to select a color from the color picker <input type="color"> 13. **hidden** a control that is not displayed but whose value is submitted to the server. There is an example in the next column, but it's hidden <input type="hidden"> 14. **img** A graphical submit button. Displays an image defined by the src attribute. The alt attribute displays if the image src is missing. <input type="image">