## New input types ### Date A control for entering a date (year , month and day ,with no time) ```htmlembedded= <input type="date" id="" name="" value="" min="" max=""> ``` ### Time a control for entering a time value with noo time zone. ```htmlembedded= <input type="time" id="" name="" min="" max="" value=""> ``` ### Datetime-local a control for entering a date and time , with no time zone. ```htmlembedded= <input type="datetime-local" id="" name="" value="" min="" max=""> ``` ### Range a control for entering a number whose exact value is not important . Used in conjunction min and max to define the range of acceptable values. ```htmlembedded= <input type="range" id="" name="" min="" max=""> ``` ### URL are used to let the user enter and edit a URL. ```htmlembedded= <input type="url" name="" id="" placeholder=""> ``` ### Search are text fields designed for user to enter search queries into . ```htmlembedded= <input type="search" id="" name=""> ``` ### Image are used to create graphical submit buttons, i.e. submit buttons that take the form of an image rather than text. ```htmlembedded= <input type="image" id="" alt="" src=""> ```