HTML5 Date Input Type - HTML CSS HTML

HTML CSS examples for HTML:Form Input

Description

HTML5 Date Input Type

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>HTML5 Date Input Type</title> 
 </head> <!--  www.j  a va  2 s . c o m-->
 <body> 
  <form> 
   <label> Select Date: <input type="date" name="mydate"> </label> 
  </form>   
 </body>
</html>

Related Tutorials