When you create a home page on our server, the URL (Uniform Resource Locator), or
address of the page, is in the following format:
If your page is named index.html and is located in your public_html directory, the URL would
be:
http://www.imbris.net/~username
In the above example, replace "username" with the name you login with.
If your page is named anything other than index.html and is located in your
public_html directory, your URL would be:
http://www.imbris.net/~username/pagename.html
In the above example, you would replace "pagename.html" with the filename of
your homepage.
You can also create sub-directories under your public_html directory
to organize your web pages. Just as your main HTML pages, documents located
under sub-directories of the public_html directory can be called directly:
http://www.imbris.net/~username/subdir/pagename.html
Or if also named index.html as:
http://www.imbris.net/~username/subdir/
In the above example, you would replace "subdir" with the name of the
sub-directory you created under your public_html directory.