-->
Showing posts with label input with type month tag. Show all posts
Showing posts with label input with type month tag. Show all posts

HTML page to choose the month from given month list.

We are using html 5.0 to simplify our selection o date without using javascript.
----------------------------------------------------------------------------------------------------------
<html><!--starting tag of html-->
<head><!--used for meta tag-->
<title><!--used for title of page-->
form concept
</title>
</head>
<body><!--is container-->
form <br>
<form><!--form tag-->
Your time is:<input type="month" name="t">
<!--we can choose the month from the calendar-->

</form><!--closing of form-->
</body>
</html>