Not Using a Custom Subdomain

You can skip this step and your calendar will work great at yourcalendar.online/YOUR_PAGE.html.
Simply point your users to the link we provide and you're good to go! No additional setup is needed by you or your organization.

Using a Custom Subdomain

If you want your calendar to live on your own domain (like calendar.mydomain.com), here are your options:

Option 1: iFrame Embed (Simplest)

You can embed your calendar into your website using an iFrame. Just paste the following HTML into your webpage:

<iframe src="https://yourcalendar.online/YOUR_PAGE.html" style="width:100%; height:1000px; border:none;"></iframe>

Option 2: DNS + Reverse Proxy (Cleanest)

Have your web developer or hosting provider set up a subdomain like calendar.mydomain.com and forward it to your calendar using a reverse proxy:

location / {
    proxy_pass https://yourcalendar.online/YOUR_PAGE.html;
}

Back to Home