Open In App

HTML | <input type="datetime-local">

Last Updated : 14 Feb, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report
The HTML <input type="datetime-local"> is used to define a date and time control. The value must include the year, month, day and time. Syntax:
<input type="datetime-local">
Example: html
<!DOCTYPE html> 
<html> 

<head> 
    <title>
        HTML input type datetime-local
    </title>
    
    <style> 
        h1 { 
            color: green; 
        } 
        
        body { 
            text-align: center; 
        } 
    </style> 
</head> 

<body> 

    <h1>GeeksforGeeks</h1> 
    
    <h2> HTML <input type = "datetime-local"></h2> 
    
    <br> 
    
    Date Of Birth: 
    <input type="datetime-local" id="Test_DatetimeLocal"> 
</body> 

</html>
Output: Supported Browsers: The browsers supported by <input type="datetime-local"> are listed below:
  • Google Chrome 20.0
  • Internet Explorer 13.0
  • Opera 10.1
  • Firefox 93.0
  • Safari 14.1

Next Article

Similar Reads