button
<!-- Google Calendar Appointment Scheduling begin -->
<link href="https://calendar.google.com/calendar/scheduling-button-script.css" rel="stylesheet">
<script src="https://calendar.google.com/calendar/scheduling-button-script.js" async></script>
<style>
.appointment-container {
display: flex;
flex-direction: column;
gap: 20px;
max-width: 400px;
margin: 0 auto;
padding: 20px;
font-family: sans-serif;
border: 1px solid #ccc;
border-radius: 12px;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.button-link {
display: inline-block;
background-color: #EF6C00;
color: white;
text-align: center;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
font-size: 16px;
font-weight: 600;
}
.instruction {
font-size: 14px;
color: #333;
margin-top: -10px;
}
</style>
<!-- Google Calendar Booking Button -->
<div id="calendar-booking-btn"></div>
<div class="instruction">Step 1: Click "Book Now" to select your appointment slot.</div>
</div>
<script>
(function() {
var target = document.getElementById("calendar-booking-btn");
window.addEventListener('load', function() {
calendar.schedulingButton.load({
url: 'https://calendar.google.com/calendar/appointments/schedules/AcZssZ2oA6Aohg2AOm3n2Ae56Js_3FVk5tH0Yebrccpxcg0ecyDwPhz3H5mk9NJ6j1slJxz89STbagld?gv=true',
color: '#EF6C00',
label: "Book Now",
target: target,
});
});
})();
</script>
<!-- end Google Calendar Appointment Scheduling -->
