HTML5 Time Input Type - HTML CSS HTML

HTML CSS examples for HTML:Form Input

Description

HTML5 Time Input Type

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>HTML5 Time Input Type</title> 
 </head> <!--   w  ww  .java 2 s. c  o  m-->
 <body> 
  <form> 
   <label> Select Time: <input type="time" name="mytime"> </label> 
  </form>   
 </body>
</html>

Related Tutorials