hello, How can I have my .html files that are in different directory use the same style.css and .gif images without having to copying them into each directory. Thanks.
You could either do a absolute path such as <link rel="stylesheet" type="text/css" src="http://somesite.com/style.css"> Or you could use this method. Pretend the css style sheet is in a directory below yours <link rel="stylesheet" type="text/css" src="../style.css"> The ../ will move to a directory below the one you are at. So if you are public_html -> /index/ -> index.html doing ../ will move into the public_html part because while you are editing index.html you are a part of the /index/ directory. Moving up one will move you to public_html. Note that I am using host gator when saying this and your root directory for your host may have a different name ~eric