|
This
can be done in several easy steps:
-
Create a directory called "images" in
your "html" directory.
-
Put all of the images into that
directory.
The URL to your images would be:
http://yourdomain.com/images/image1.jpg
If you are coding the html yourself
the "img" tag would look like this:
<img src="http://yourdomain.com/images/image1.jpg">
Replace "yourdomain.com" with
your real domain and "image1.jpg" with the name of the image
you would like to access.
Note:
Make sure that the directories and files in the URLs are Case
sensitive. Example: <img src="http://yourdomain.com/images/image1.jpg"> will
not work if the folder is called “Images”.
|