-->
Showing posts with label date tag. Show all posts
Showing posts with label date tag. Show all posts

Friday, July 17, 2020

HTML page to choose the date from drop down list.

a simple code to understand this is given below.
-------------------------------------------------------------------------------------------
<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 date of birth is:<input type="date" name="d">
<!--we can choose data from given date button-->

</form>
</body>
</html>