<!DOCTYPE html>
<html>
<body>
<h1>Show a Time Input Control</h1>
<p>If the browser supports it, a time picker pops up when entering the input field.</p>
<form action="/action_page.php">
<label for="appt">Select a time:</label>
<input type="time" id="appt" name="appt">
<input type="submit">
</form>
</body>
</html>