HTML5 week input type examples




HTML5 week input type examples

<!DOCTYPE html>
<html>
   <head>
      <title>HTML5 Week Input Type examples</title>
   </head>
   <body>
      <form>
         <label>
            Select Week: <input type="week" name="myweek">
         </label>
      </form>
   </body>
</html>

Output