HTML CSS examples for HTML:Form Input
HTML5 Datetime-local Input Type
<!DOCTYPE html> <html lang="en"> <head> <title>HTML5 Datetime-local Input Type</title> </head> <!--from w w w . j a v a 2s . c om--> <body> <form> <label> Local Date & Time: <input type="datetime-local" name="mylocaldatetime"> </label> </form> </body> </html>