HTML5 Datetime Input Type - HTML CSS HTML

HTML CSS examples for HTML:Form Input

Description

HTML5 Datetime Input Type

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>HTML5 Datetime Input Type</title> 
 </head> <!--  w w w  .  j  a va  2s  .  c  o m-->
 <body> 
  <form> 
   <label> Date &amp; Time: <input type="datetime" name="mydatetime"> </label> 
  </form>   
 </body>
</html>

Related Tutorials