HTML CSS examples for HTML:Form Input
HTML5 Week Input Type
<!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>