Moving this thread over 
1. What are the best programs for making a website?
There are several good programs and everyone who uses one will tell you theirs is the best! They will all be fairly similar, but find one you find works best for what you want to use it for. These are the common ones;
DreamWeaver
Microsoft Frontpage ? this often comes with Microsoft Office
http://www.ultraedit.com/]UltraEdit[/url]
2. How do I learn to code?
Again there are many sites that have html tutorials on them, refer to the huge links thread for some, but also Web Reference is found to be very helpful and Lissa Explains is very clear with the basics. Learning HTML will never happen overnight, so don't give up easily and do ask if you need directions.
3. What is a stylesheet?
A stylesheet or CSS (Cascading Style Sheet) is one small page of coding that you link from all your other pages so they get their basic information from it. E.g. font size and type, background and scroll bar colour. But it means that by changing that information in one file it will update all your site's pages.
First of all you need to create a file of your stylesheet. It could look something a bit like this,
though obviously with different colours/values in order to suit your site:
This file should be saved as something like 'stylesheet.css' or another similar variation, as long as it ends with .css
The next step is to place a simple code in the head of each of your webpages.
4. How do I get a certain page to be the first one seen when people to go my site?
Simply name the first page you want to load as index.htm and that will be the page to open first when people visit your site.
5. What is hosting?
Hosting (also known as Web site hosting, Web hosting, and Webhosting) is the business of housing, providing a server, and maintaining files for one or more Web sites.
Your web site or web page(s) are hosted, or stored, on a computer (an http server) that is permanently connected to the Internet so that it can be seen by anyone connected to the Internet at any time
Many sites offer hosting (too many to list) but it's best to look on a host reviewer site for the best recommended and priced.
6. Why do my image links on the coding show up with %20 throughout?
%20 indicates a space between words/letters which doesn't work online. So it's best to save everything with no spaces. E.g. ?buffyandspike.jpg' instead of ?buffy and spike.jpg' which would look like ?buffy%20and%20spike.jpg'.
7. Where can I get??
Fast Online Users is a good counter for telling how many visitors you have currently on your site and StatCounter is good for telling you the total number who have visited you. But there are many more out there if you search google for them. Tagboard will give you.. well a tagboard! Lastly a good scripts centre is Dynamic Drive.
8. How do I put my pages/images on the internet?
By using an FTP program. Again there are many, Smart FTP, BulletProof FTP, you get the idea! You will need from your host the user details to log in, but once in you will be able to drop and drag items from your documents onto the server.
9. How do I get pages/images to open in a new window?
<a href='spuffywallpaper.htm' target='_blank'>Spike and Buffy</a>
10. How do I put my site name in the code?
In the head part of the coding <title>site name</title>
Feel free to ask any other html/website questions that aren't answered above in this thread

1. What are the best programs for making a website?
There are several good programs and everyone who uses one will tell you theirs is the best! They will all be fairly similar, but find one you find works best for what you want to use it for. These are the common ones;
DreamWeaver
Microsoft Frontpage ? this often comes with Microsoft Office
http://www.ultraedit.com/]UltraEdit[/url]
2. How do I learn to code?
Again there are many sites that have html tutorials on them, refer to the huge links thread for some, but also Web Reference is found to be very helpful and Lissa Explains is very clear with the basics. Learning HTML will never happen overnight, so don't give up easily and do ask if you need directions.
3. What is a stylesheet?
A stylesheet or CSS (Cascading Style Sheet) is one small page of coding that you link from all your other pages so they get their basic information from it. E.g. font size and type, background and scroll bar colour. But it means that by changing that information in one file it will update all your site's pages.
First of all you need to create a file of your stylesheet. It could look something a bit like this,
though obviously with different colours/values in order to suit your site:
HTML Code:
A{ color:#000000; text-decoration:none; font-weight:none } A:visited{ color:#000000; text-decoration:none; font-weight:none } A:active{ color:#000000; text-decoration:none; } A:hover{ color:#000000; text-decoration:line-through; cursor:help; } body { scrollbar-face-color: #000000; scrollbar-highlight-color: #000000; scrollbar-shadow-color: #000000; scrollbar-3dlight-color: #000000; scrollbar-arrow-color: #000000; scrollbar-track-color: #000000; scrollbar-darkshadow-color: #000000; background-color: #000000; } BODY,TR,TD,P { font-family: tahoma; font-size: 12pt; color: #000000; } input,textarea { color: #000000; font-size: 12pt; letter-spacing: 2pt; font-family: verdana; background: none; border:10pt solid #000000; }
The next step is to place a simple code in the head of each of your webpages.
HTML Code:
<html> <head> <LINK REL=stylesheet HREF="mystyles.css" TYPE="text/css"> </head>
Simply name the first page you want to load as index.htm and that will be the page to open first when people visit your site.
5. What is hosting?
Hosting (also known as Web site hosting, Web hosting, and Webhosting) is the business of housing, providing a server, and maintaining files for one or more Web sites.
Your web site or web page(s) are hosted, or stored, on a computer (an http server) that is permanently connected to the Internet so that it can be seen by anyone connected to the Internet at any time
Many sites offer hosting (too many to list) but it's best to look on a host reviewer site for the best recommended and priced.
6. Why do my image links on the coding show up with %20 throughout?
%20 indicates a space between words/letters which doesn't work online. So it's best to save everything with no spaces. E.g. ?buffyandspike.jpg' instead of ?buffy and spike.jpg' which would look like ?buffy%20and%20spike.jpg'.
7. Where can I get??
Fast Online Users is a good counter for telling how many visitors you have currently on your site and StatCounter is good for telling you the total number who have visited you. But there are many more out there if you search google for them. Tagboard will give you.. well a tagboard! Lastly a good scripts centre is Dynamic Drive.
8. How do I put my pages/images on the internet?
By using an FTP program. Again there are many, Smart FTP, BulletProof FTP, you get the idea! You will need from your host the user details to log in, but once in you will be able to drop and drag items from your documents onto the server.
9. How do I get pages/images to open in a new window?
<a href='spuffywallpaper.htm' target='_blank'>Spike and Buffy</a>
10. How do I put my site name in the code?
In the head part of the coding <title>site name</title>
Feel free to ask any other html/website questions that aren't answered above in this thread

Comment