HTML5 time input type examples




HTML5 time input type examples

<!DOCTYPE html>
<html>
   <head>
      <title>HTML5 Time Input Type examples</title>
   </head>
   <body>
      <form>
         <label>
            Select Time: <input type="time" name="mytime">
         </label>
      </form>
   </body>
</html>

Output