Note: All instructions on this page are provided on an as-is basis. Author assumes no liability for the consequences of use or misuse of these instructions. Use at your own risk

Did you ever wonder how to do something using a computer? I have. There are a lot of different sites out there that have bits and pieces of the huge puzzle that is computers. I've decided to create an all-inclusive reference for doing just about anything. I am only one person and I am starting today, 3/11/05. As I solve the mysteries of software, I shall document them in a direct and simple manner.

Find out more about me and why I would do something this crazy. You can take a peek at my website and learn all my tricks by clicking on View->View Source. Click here to go to my website. As I learn how to do things, I will document them here.

How do I write a webpage?

There are only 3 things you need to do webpages, and you already have 2 of them.

You will need to work with your ISP to get a spot on their webserver dedicated to you. Most ISP's provide this, but with some very low cost ISP's it is extra. For $20 a month, you should be able to get dial-up, 2 emails and 10mb of webspace. If not, look for a different provider

Connect to your website.

Your ISP should have given you a sheet of paper with a bunch of userids and passwords. You will have a network access id/password and an e-mail password. If you are going to do webpages, you will also have an FTP userid and pass, which will be the same as your network access password.

  1. Start up your ftp program.
  2. enter your site information. Say for example, my username for this site is shanniec. The site address is upload.att.net (get this from your service provider's website) If there is sufficient interest, I will gather this info from all the major providers.
  3. Try to connect and enter the password.
  4. once you have connected, you will see a list of files on both sides.
  5. create a directory on your C: drive called www. This is where you will keep the local copy of your website.
  6. open notepad from start->programs->accessories->notepad

type in:

<h1>My Website</h1>

and you will get

My Website

Save the file to the c:\www directory as "index.html"

Now we can transfer this file to your web server

Upload the File

Go to the FTP software of your choice, and click on the file you just created. There should be some arrows pointing back and forth. Generally your computer is on the left and the web server is on the right. Now click on the right-pointing arrow. You should see some stuff happen and after a bit, the file should be on both sides of the screen. Congratulations, your page is now on the web.

View the Results

Open your web browser. In the address box, enter the address of your web site. Generally, it will consist of 3 parts all jammed together:

  1. http://
  2. provider name, such as "worldnet.att.net" or "alaska.net"
  3. username with a tilde(~) in front, for example: "~shanniec", or "~chazmo"

Other servers may create the address differently, depending upon the server software they are using and how they have it set up. Check with your ISP, they usually have a support page. Another method is:

  1. http://
  2. username ie: "shanniec", or "chazmo"
  3. provider name, such as "home.att.net" or "alaska.net"

Type this all in with no spaces, then tap the enter key. You should see your web page appear saying "My Website" in big letters. Congratulations, now you are able to test what you have entered.

Add Content

The next step is to start adding content. The most basic type of content is text.

<p>body text</p>

Unordered list

<ul>

<li>list item</li>

<li>list item</li>

<li>list item</li>

<li>list item</li>
</ul>

Insert an Image

<IMG SRC="filename.gif">

Set the Background Color

<BODY BGCOLOR="000000">

Set Background Image

<BODY background=Image1.jpg link=blue vlink=gray alink="#0000FF">

Stack Images Horizontally

<TABLE CELLSPACING=30 align=center>
<TR> <TD>Caption 1:<BR><a href="http://www.mysite.com/page1.html">
<IMG SRC="image1.gif" ALT="This is image 1"> </TD> </a>
<TD>Caption 2: <BR>
<IMG SRC="image2.jpg" ALT="floating text description" width=100 height=128 > </TD>
<TD>Caption 3:<BR>
<a href="http://www.mysite.com/page3.html">
<IMG SRC="image3.jpg" width=133 height=88 ALT="alt text">
</a></TD></table>

What is an operating system?

Which is the best operating system?

What kind of computer should I buy?

How do I protect my computer from a Virus or Spambot Attack?

Why are the links on my website greyed out?

There are 2 possibilities:

  1. Your history contains that link. Go to Tools->Options->Clear History
  2. The website has the tag "link=grey" or "link=(hex equivalent of grey)"

How do I load Apache Server on my computer?

How do I load PHP on my computer?

What is WAMP and why should I get it?

How do I add a hit counter to my website?

How do I add a guestbook to my website?

What is PERL and CGI and do I need to learn it?

What is the best programming language in the world?

How do I find out if a domain name is available and if not, who is squatting on it?

My other site

Please send me a comment via email. I'd love to hear from you

 

This page was created using software I wrote myself using Borland C++ Builder 5.0.

©2005 Charles C. Bader