HTML CSS examples for HTML:Form Input
HTML5 Time Input Type
<!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>