Appointuit allows for practices to have the web widget integrated in a few different ways.
The most common is to include the javascript from the Settings > Web Widget page in Appointuit that adds a sidebar button that in turn when clicked, opens a popup overlay.
If this option is not suitable, a practice can try the following:
An Embedded iframe
<iframe style="overflow-y: auto;
border: 0;" src="https://widget2.appointuit.com/<WIDGET_ID>" width="970" height="600"></iframe>
Or a Widget Button (Long Skinny Green)
<a href="https://widget2.appointuit.com/<WIDGET_ID>" title="Book an appointment online" ><img src="https://s3.amazonaws.com/appointuit-web/images/buttons/AppointuitBookingLogoSmlGreen.png" alt="Book an appointment online" border="0" width=“60px" height=“37px"></a>
Or a Widget Button (Larger Green)
<a href="https://widget2.appointuit.com/<WIDGET_ID>" title="Book an appointment online" target="_blank"><img src="https://s3.amazonaws.com/appointuit-web/images/buttons/AppointuitBookOnlineButton.png" alt="Book an appointment online" border="0" width="205px" height="62px"></a>
Plus the code to make the Widget Buttons work
<script src="https://appointuit-web.s3.amazonaws.com/widget2/appointuit.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
var appointuit_options = {};
appointuit_options.notab = "true";
var appointuit = new appointuit_widget(appointuit_options);
</script>