Open In App

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

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:



Article Tags :