programming-examples/html/Basics/Creating HTML5 datetime-local input type.html

13 lines
306 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<title>HTML5 Datetime-local Input Type</title>
</head>
<body>
<form>
<label>
Local Date & Time: <input type="datetime-local" name="mylocaldatetime">
</label>
</form>
</body>
</html>