... Recommend this series to a friend.
First we'll delete what we see in the editor window now so that should GeoCities change their default format, you and I will still be in sync with each other following the instructions on this page. Highlight the contents of the editor window by right clicking in the window, click "Select All" (or hit the "A" key on the keyboard), and then Delete.
I find which technique I use depends upon the type of work I'm doing. This is true in all of computer work (or life in general). As they say, "there are many trains that go to Chicago" … which you use depends upon where you are coming from. Now why anyone would want to go to Chicago; that's another question.
Now with an empty editor window we return to that template we saw. I'm not going to discuss in any way the "DOCTYPE" tag (the first one you see below). I'll assume you will always keep it on top of your editor. Our discussion will start with the html tag. I'll post it here again for you:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Untitled</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
From now on, the "DOCTYPE" tag will be omitted in our examples; you will keep in on top in your editor. Again, how to copy/paste:
The tags should now appear in your editor window. Learn to proofread; every dot and dash has to be exactly as prescribed, especially if typing the tags. Once you know it is correct, we proceed to placing some text on your new webpage keeping in mind that this is your opening page and should give some indication of what your website is all about.
Be especially careful about not accidentally deleting any part of the html tags. You miss one dot, dash, bracket, or insert one unnecessary space, and the page takes on an entirely different look than the one you expect. And that's when a different kind of fun starts; searching for the error. With experience, this search doesn't take long; upon seeing the page you know exactly what and where the error is.
Want to start your webpage with a heading? Here's the tag (but it has to be given a number) … <H>, and make sure you end that heading with a </H>. The heading tag comes with numbers: <H1> through <H6>.
The numbers beside the H tell the browser how large the letters are to be, with <H1> being the largest and <H6> the smallest. So what do your want your heading to say? Lets suppose it's "My Webpage" (sans quotes). You might want to substitute you name for "my" but in the possessive form (your name with an apostrophe 's). So far, this is what you should have in your editor:
<HTML>
<HEAD>
<TITLE>My Webpage</TITLE>
</HEAD>
<BODY>
<CENTER>
<H1>Greetings from the Land of Oz</H1>
</CENTER>
</BODY>
</HTML>
After proofreading your work carefully, press the Preview button and see the results of your work. Might not be much but you now have the foundation of a webpage. If you like what you see so far, click Save and Continue. Now that it's saved, you can see what it looks like on it's own webpage. Do the following:
Click the link, "index.html" next to where is says "Filename:" near the upper left hand corner. This opens your page on a second browser with the URL (that's the webpage address on the internet) exactly how the world will see it. Not much but it is still mighty pretty (and it's yours).
Is there more to do? Well, from here we can give your background and your font some color. We'll make sure they don't interfere with each other and making sure they don't blend into each other; you would never want a black background with a dark blue lettering. These precautions will all take experience; I think some of my pages might still be outrageous in appearance.
We return to the … Table of Contents … enjoy your work.
And if anything to add or correct - - I certainly would appreciate it.
Return to ... Navigator ... that's it.