Hiya im trying to make my own site in HTML, as im trying to learn HTML, an when i add this to my site ...
<p>
An image:
<img src="Siggey.gif"
width="350" height="150">
</p>
the picture like frame comes up but the actual picture doesnt come up, i'll post screenie please help lol
i'm suggesting you opened that with your web browser from your computer, and it hasn't been uploaded to your domain hosting.
Well, stick it in a folder in your desktop, name it anything (Go with something like "website1".
Stick the .html in the folder.
make another folder called "images".
stick the .gif in the "images" folder.
then copy 'n paste this:
<p>
An image:
</p>
<img src="images/Siggey.gif"
width="350" height="150">
The only things I've done is moved the </p> tag, as you wouldn't format your picture as text. And i've put images/ behind the "Siggey.gif" to link the .html to the image.
Btw, make sure your image is actually called "Siggey" and it is a .gif
If you've put images/Siggey.gif and it's actually called siggey then the .html will be looking for "Siggey" not "siggey".
It's advised you dont use caps when handling links to images.