There are two ways to imbed a calendar in your web page using frames.
1. You can use an inline frame to place the calendar in the middle of a web page. The follow is an example of html code using inline frames. You may adjust the width and height for best results. Replace, yourcalendaridentifier with the identifier of your calendar:
<IFRAME NAME="I1" WIDTH="95%" HEIGHT="434" SRC="http://www.calendarwiz.com/yourcalendaridentifier">Your browser does not support inline frames or is currently configured not to display inline frames.</IFRAME>
2. You can use a frame set to imbed your calendar under a header page. The following is an example of html code using a frame set. First, place this code in a page which might be called calframe.htm:
<FRAMESET ROWS="90,*" FRAMEBORDER=NO FRAMESPACING=0 BORDER=0>
<FRAME NAME="header" SCROLLING="no" NORESIZE TARGET="main" SRC="header.htm" frameborder="0" MARGINWIDTH="0" MARGINHEIGHT="0">
<FRAME NAME="main" SRC="http://www.calendarwiz.com/yourcalendaridentifier" SCROLLING="auto" MARGINWIDTH="0" MARGINHEIGHT="0" frameborder="0" NORESIZE>
<NOFRAMES>This page uses frames, but your browser doesn't support them. </NOFRAMES>
</FRAMESET>
Next, create a file called header.htm with any content such as website header and navigation buttons. When you then open the file calframe.htm you will see the header page at the top and calendar at the bottom. We suggest you also go to Admin Menu, click on Options and select the "Check to not show headline area at top" since you are using your own header page.
For more on frames and html usage we recommend visiting http://www.w3schools.com