Files
programming-examples/html/_Basics/Creating HTML5 time input type.html
Michael Reber b880c3ccde Initial commit
2019-11-15 12:59:38 +01:00

13 lines
271 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>HTML5 Time Input Type</title>
</head>
<body>
<form>
<label>
Select Time: <input type="time" name="mytime">
</label>
</form>
</body>
</html>