I'm just trying to put some pictures on my website using index.html
If i go to my website at my computer i can see al the pictures.. but nobody else can on their computers...
That is because the src tag for the image is referencing the picture on your own hard drive instead of the server. If you look at the source code you will see something like this:
Code:
<img src="file:///C:/webpages/images/mypic.gif">
Give us the web site for further help. Without it we are just guessing.
And by the way this topic is really for an html forum not a DirectAdmin forum since it has nothing at all to do with DirectAdmin.
Typically on your site you would create a folder usually "images" then you would upload your pictures to that folder and then use
<img src="http://yoursite.com/images/mypic.gif">
Of course there are variations on this but the folder helps keep everything "behind the scenes" neat and easy to work on.