bra_hhplo.gif (1954 bytes)

Find the meaning of True Peace!

Back to main page.

   Instruction on how to add 
			the WebRing Code to your page.

   Here you will find some things 
			to aid you in building a Webpage.

Some good Books on Web Design and HTML

My Links Page

My Links Page

Complete information on how to contact me.

Please sign my Guestbook

Click here to email me.

ChristRing 		Ministries

Cyber-Church.com
			is a full service online church

Get a Free Bible for your computer here

Browser News

Made with EditPad

frontpag.gif (9866 bytes)

Here are some little things you can add to your page to make it a little nicer or faster loading. I will be adding more hints to this page from time to time so check back once in a while.

Speed up links - When you link to a different site of folder on your site you can speed up the time it take to load it by adding a / after the URL like this http://jesuspa.com/   this works as long as the URL goes to a domain or a folder like http://jesuspa.com/BibleRoom/. This will not work if the link goes to a page on the site like this: http://jesuspa.com/BibleRoom/index.html

Add a message to a text link - You can add a message that will show up when you place the cursor on a text link. It look like this http://jesuspa.com. You do this by adding   title="Place Your Text Here" in the html of the link on you page. The one above looks like this in the html of this page. <a href="http://jesuspa.com" title="This is the new home for the Jesus in Pennsylvania WebRing">

Trapped in frames? - If you can't stand to see your site trapped inside another site's frames, there is an easy way to get out. Simply create a link that points to the
same page with TARGET="_top" (This, incidentally, is the proper way to code
links out of frames.) So your code will look something like this:
<A HREF="http://www.YOUR_SITE.com/YOUR _PAGE.htm" TARGET="_top">Trapped in a
frame?</A>
To target a new Browser Window, you can use this syntax:TARGET="_new" 
If you want to automatically ensure that every visitor is taken out of any
frames, you can use a simple script within your BODY tag, like this:
onLoad="if (self != top) top.location = self.location"