Instructor Information
1. How to create an HTML link to the Learning Tree website.

Please use the following code within a web page to point to the Learning Tree site:

<a href="http://www.learningtree.com">The clickable text of the link goes here</a>

The visible portion of the link should look like this:
The clickable text of the link goes here

When clicked, it should load the Learning Tree home page.

If you'd like to include a link to a particular course page, use the following:
<a href="/courses/471.htm">The clickable text to course 471 goes here</a>

The clickable text to course 471 goes here
Simply replace the 471 with your course number.


2. How to include the Learning Tree logo.

Please use the following code to place the logo within the web page:
< img src="/images/lt_logo.gif">

To align the text to the left of the image, use the following:
< img src="/images/lt_logo.gif" align="left">

To align text to the right of the image, use:
< img src="/images/lt_logo.gif" align="right">