A CHAIN IS AS STRONG AS IT'S WEAKEST LINK
Anyone know how many links there are on the web? I don't, but its much bigger than 256*256*256, that's for sure. Links are what make the Internet what it is, the ability for one person to guide another to an area of the Internet (i.e. a page or website) that they otherwise wouldn't have been able to find. One simple tag team called the anchor tag <A> </A> make links able to happen. They use a special equation whose name is HREF. The structure is HREF="http://address of website "
A completed link looks like this : <a href="http://address of website">NAME OF WEBSITE<a> It is very easy for HTML to get nausea when it comes to links. They are very easy to make mistakes with. Here are some pointers to keep you and HTML happy. This may all seem very childish, but trust me, been there, done that! Fixing links is a pain! Other notes: Here is an example of our plain Jane website with a link to the Cybermoms website. I also added a paragraph tag (<P>) so that there is a line separating "the good stuff goes here" and the Cybermoms link.
<HTML>
http://address is in quotes
http://mainaddress/index.html as the address or just http://mainaddress and put a note on your webpage explaining the coolness of the page your surfers should try and find once at your suggested link.
<HEAD>
<TITLE>MY VERY BASIC PLAIN JANE BORING WEBPAGE</TITLE>
</HEAD>
<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#ff0000" alink="#00ff00">
the good stuff goes here
<P>
<a href="
</BODY>
</HTML>
And, here is what the page looks like on the Internet:
