https://www.chrisdriggers.com/images/
Is a 403 error forbidden access page, which means that a directory of the name “images” lives there ??
bubba.jpg
and
bubba.jpg.
neither of them work with the above URL … so you’re file might be named wrong, or you have another IMAGES folder you are trying to use.
httpdocs is in your URL posted earlier, but that is a 404 not found error, so it’s not part of your URL, just might be part of your path-to-“images”.
Anything viewable on the web needs to be in your htdocs, or however it’s called on your server setup.
To call up an image you can just use relative paths:
“/images/image.jpg”
would work on a directory installed in the same directory as your index.php, most likely.
so if your WP install and Index.php are in the root of your site, then /images/ would be a directory folder inside right there, with your images in that folder.
If you have the path to the image.jpg right, either:
https://www.chrisdriggers.com/images/
or
/images/
with the image.jpg name on the end would work with the ‘<img>’ tag.
‘<img src=”https://www.chrisdriggers.com/images/image.jpg” border=”0″ alt=”Name of Photo Here” title=”Title Here”>’
or
‘<img src=”/images/image.jpg” border=”0″ alt=”Name of Photo Here” title=”Title Here”>’
or maybe you need to give a root relative path of:
‘<img src=”./images/image.jpg” border=”0″ alt=”Name of Photo Here” title=”Title Here”>’
or
‘<img src=”/./images/image.jpg” border=”0″ alt=”Name of Photo Here” title=”Title Here”>’
One of the above should work, as long as you have an image in that place with the exact name as you are putting in the img tag.
Sleuthing for you done though. The correct place you have your picture is wp-images.
Also, you have CAPS on for the .jpg part of the image name, which can be confusing when typing out info, especially when your server is sensitive to cases, as is your server.
bubba.jpg doesn’t work
but bubba.JPG is right.
How do I know this? Check out …
https://www.chrisdriggers.com/wp-images/bubba.JPG
Nice kitty!
I sleuthed it out by viewing your background image, since your source code showed nothing for the pic you DO have on your left side “banner”.
Glad to have helped!