Calendar Booking
<h2>Available Dates</h2>
<table>
<tr>
<th>Date</th>
<th>Status</th>
</tr>
<tr>
<td>2025-04-15</td>
<td>Available</td>
</tr>
<tr>
<td>2025-04-16</td>
<td>Booked</td>
</tr>
<tr>
<td>2025-04-17</td>
<td>Available</td>
</tr>
</table>
<h2>Book a Date</h2>
<form class="booking-form" action="#" method="post">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>
<label for="date">Choose a Date:</label>
<input type="date" id="date" name="date" required>
<input type="submit" value="Book Now">
</form>
</div>