Hi, I'm pretty new to html and I've run into a little problem that I'm sure someone knows the answer to. I uploaded my html file (for one page of my site) into the public_html section of my hosting account. I also uploaded the image files into that section as well. The text for the web page is visible (naturally), but the images don't show. What do I need to do to get this right? I'd greatly appreciate some direction. Thanks Tuli
probably you might have created the html file through some html editor. If you use the insert image option through the editor, the image path will be stored as <img src="C:\Documents and Settings\yourPC\Desktop\user\folder\images\image.jpeg"> which will work locally. If you save it as it is and uploaded in ftp. The img path should be changed as <img scr="images/image.jpeg"> Please check the path of the image and correct. if you could post your URL , we may analyze more in detail.
Ooooh! I finally got it right after playing around. You're right, I was using NVU and the image location was wrong. I had to change it to my domain and the image name : www.whatever.com/image.jpeg Thank you so much Venga!
I can't advocate enough to use a text editor for coding instead of an IDE in the beginning, i personally started with Notepad++ and so far have not felt the need for an IDE. That does not mean IDEs are useless, what i mean is i feel HTML/CSS/Javascript and other such scripting coding is better done with simple text editors, for atleast new learners.