Open In App

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

Improve
Improve
Like Article
Like
Save
Share
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:




<!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

Last Updated : 14 Feb, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads