HTML5 Week Input Type - HTML CSS HTML

HTML CSS examples for HTML:Form Input

Description

HTML5 Week Input Type

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>HTML5 Week Input Type</title> 
 </head> <!--from  w ww .  j  a va2 s  .  c  o  m-->
 <body> 
  <form> 
   <label> Select Week: <input type="week" name="myweek"> </label> 
  </form>   
 </body>
</html>

Related Tutorials