Have you ever wondered how to get an image offsomeone else's page? Or how to save someone's page? Well here is a brief how-to toget you started.

What should I use to write my page?

There is a plethora of HTML editors out there. WordPerfect and Word both have HTMLcapabilities now. HoTMetaL has been around a while.
As for choosing one, don't necessarily look for the one with the most gadgets. Lookfor the one that suits you best. Some have every possible command available frommenus. Others allow you to make the command list.
Personally, I use Notepad. Yes, Notepad. I never found an editor which does what Iwant and is easy to use. I find it easier to just cut and paste rather thanfiddle with some editor's command list.

How do I get my the files I create to the web?

First of all, you need to know a little about how the web works. What you're doingwhen you view a web page is telling your browser to fetch a document anddisplay it. The documents that your browser fetches are located in people's andcompany's personal accounts. Those people and companies have given permission fortheir web pages to read by anyone. Normally, only you can access files in youraccount, unless you specify otherwise.
So, getting your files on the web just means putting them somewhere in one ofyour accounts, and setting the permission to allow others to view those files.
You can put them in your account using any FTP software you want. Your sysadmin(system administrator) can help you set the permissions.

How do I "view source?"

To view the source of a page, go to the View pull-down menu on the menu bar.Choose Source... from that pull-down. Netscape will then show you the HTMLcode used to create the page.

How do I use a picture from someone else's page?

There are two ways to "borrow" a picture from someone else's page. Youcan link directly to their image (not recommended), or you can copy their picturefor your own use.

NOTE: Please be respectful and courteous when borrowing images. By convention,an artist's work is copyrighted as soon as it's finished. So, you would be breakingcopyright laws by just "stealing" someone's images. Most pages will have away to send mail to the page's author. Most people will be glad to let you use theirwork, but you should always ask first!

To link to someone else's image, view the source and find the IMG SRC=" " statementfor that image. The address for the image is the path to the page you're currentlyon plus the stuff between the quotes.
So, right now you're viewing http://www.nashville.net/~templedf/crash/HowTo.html.Pretend there was an image here you wanted. You'd view the source and find theplace where I linked to the image. Let's say that it looks like IMGSRC="Pictures/Demo/test.gif". The way you'd link to this image would behttp://www.nashville.net/~templedf/crash/Pictures/Demo/test.gif.

To copy an image, view the source and find the IMG SRC=" " statement for thatimage. Copy the stuff between the quotes (CTRL-C in Windows). Now go to theLocation bar at the top on your Netscape window (right under the Back, Forward,etc. buttons). Highlight just the name of the page you're viewing. (right now thatis HowTo.html.) Then just do a paste (CTRL-V in Windows). Finally, press ENTER.
What you've just done is visit the image itself, without the page. Now go to theFile menu and select Save. You should now have a copy of the imagesaved on your harddrive.

It's not recommended that you link to someone else's image for two reasons. First,it slows things down quite a bit to have to go hunting across the net for an imageas opposed to just getting it off the server.
Second, if the person moves or deletes the image, you're stuck.

How do I use a background from someone else's page?

Using someone else's background is essentially the same as borrowing a picturefrom someone else's page. The only difference is that instead of looking for theIMG SRC=" " reference to the image, you're looking for the BACKGROUND=" " tag inthe body declaration (the <BODY ... > tag).

Return to the Menu