programming-examples/html/Basics/Creating HTML5 datetime input type.html
2019-11-18 14:44:36 +01:00

13 lines
283 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>HTML5 Datetime Input Type</title>
</head>
<body>
<form>
<label>
Date & Time: <input type="datetime" name="mydatetime">
</label>
</form>
</body>
</html>