Do you have a web page you would like to render inline into one of your online course pages (or perhaps right into a quiz question)? How about an HTML document you have uploaded into your Weblearning account - do you have a need to render that inline into your course without requiring your student to click a button or link to open it?
Let me show you the basics here. In this example, I am going to render the Atrixware home page into the main tab of a course.
First go into your course Properties (COURSES > ADMIN TOOLS > PROPERTIES & SETTINGS):

Click the LAYOUT & DESIGN tab, and then click TAB 1. Position the mouse cursor where you want to place the document (just click somewhere in the layout), and then click the INSERT HTML button on the toolbar:

Doing so will bring up a place to enter in HTML markup code (see below):

As you can see, I have entered code (which you should also enter). Note that where you see our website address, simply change to YOUR website address or document you want to render. Here is the code so you can copy/paste:
<iframe src=”http://www.atrixware.com” frameborder=”yes” height=”400″ width=”100%”></iframe>
Click OK, and then save the changes to the course. Go ahead and login as the student, and you will see your website/document inline on the course tab (my example is shown here):

Now, assume you have uploaded an HTML document into your online Weblearning account, and would like to render it. The trick to this is actually knowing the URL of your file. This is obtainable in two ways.
If you know your server name, and your account login name, and the filename, the url is derived like this:
http://{SERVERNAME}/lms/{ACCOUNTNAME}/qc_imagerep/{FILENAME}
What if you don’t know all of that? The TEXT EDITOR PLUGINS can lend a hand. Click the TEXT EDITOR PLUGINS button, and in the INSERT RESOURCE section, pick your file, and click INSERT LINK:

Next, click the HTML tab (shown above) so you can view the source code. Locate the code just inserted (you may want to insert into a blank tab so you won’t have to go through a bunch of other source code as I have in the example above). You will wee the URL of the file right after the window.open code (in the example, I have highlighted the URL). This is the URL of your resource.
Now that we have that, we can insert it inline on our course tab. Following a similar process as we did before, get yourself up to the place where you enter the HTML code, and enter the following (in this example, I have removed the border from the document to make it appear as if it is part of the page):
<iframe src=”http://pro.weblearningcenter.net/lms/atrixware_tech/qc_imagerep/sample.html” frameborder=”no” height=”400″ width=”100%”>
Save the changes, and log back into the course. This time, you can see in my example, there is no distinguishing the actual contents of the course tab from the embedded document (other than the red box I added to the screen shot to identify to you here the embedded content - which you will not see on yours):

All of this is possible via the <iframe> html tag. It enables you to place a ‘frame’ into your page, and inside that frame, to render another web page or document.
For more information on usage of this html element, including how to change the size, border, scrollbars, css styling, and more, start here: http://www.w3.org/TR/html401/present/frames.html#h-16.5