xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Date Picker</title>
<style>
/* Add some style to the date picker */
input[type="date"] {
width: 200px;
padding: 12px 20px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<!-- Create the date picker -->
<label for="date">Select a date:</label>
<input type="date" id="date" name="date">
</body>
</html>