|
studentweb.
tulane
.edu
- Webpage Help
Notice how one of your files is listed there, 'index.html'. This is the file the server is showing when you go to your homepage, http://studentweb.tulane.edu/~jjingle. If you don't have an index.html file, then the server will show the error page. Ok, Great. I know what's wrong: So how do I fix it? Easy, you can type in the name of any file in your 'public_html' folder after your account name. For example, the file 'page1.html' will be at: http://studentweb.tulane.edu/~jjingle/page1.html. Got it? Good. Now to have your own file show up, just create your own file named 'index.html', and upload it onto the server, overwriting the existing 'index.html' file. WAIT! I tried that, but it still doesn't show up! There are some other intricacies of the server you will need to know about. On a linux server, such as Studentweb, the two words 'Smurf' and 'smurf' are as different as 'cat' and 'dog'. Notice the capitalized S in the first 'Smurf'. So here's what you might be doing: You might be going to http://studentweb.tulane.edu/~jjingle/smurf.gif attempting to access the file 'Smuf.gif'. The server is looking for a file named 'smurf.gif', and in our list of files above, there is none, so it tells you the file is not found. There is a different in the capitalized letter S, so you must go to: http://studentweb.tulane.edu/~jjingle/Smurf.gif. Capitalization isn't my issue, what else should I know? If you code your sites by hand, you will need to watch out for spaces in your file names. We reccomment you use Dreamweaver or Adobe Contribute. So your code snip is as follows: img src=picture 1.gif width=100 height=100 The picture on your page is showing up as a broken link, and you want to know why. Your english professor may have told you that you need to quote people in your papers, now I'm going to tell you to quote in all your pages. (Yeah, that was lamer than the first bad joke. Sorry.) So the correct code would be: img src="picture 1.gif" width="100" height="100" Of course you need your left and right carrot's added in. It's not spacing nor Capitalization, and it still doesn't work. Make sure that your files are in your 'public_html' folder, and not in a subfolder. If they are in a subfolder called 'webpage', then you can access them at: http://studentweb.tulane.edu/~jjingle/webpage/. But beware, capitalization and spacing applies to folders as well. |
|