1
2
<html lang="en">
3
<head>
4
<title>HTML Form Date and Time Inputs</title>
5
</head>
6
<body>
7
<h1>HTML Form Date and Time Inputs</h1>
8
<form>
9
<label for="time">Registeration Time:</label>
10
<input type="time" id="time">
11
</form>
12
</body>
13
</html>