how do you insert a pic?



Of course I made up the address above. When it's a valid address the img bits disappear and your image should appear.
 
dhjjessel said:
yeah will that work for myspace?

You need to upload the image to your web hosting and then put a link to that inside IMG tags on the page you want it displayed:

Code:
<img src="http://website.com/image.jpg" alt="Alternative Text">< /img>

:)
 
Trigger said:
You need to upload the image to your web hosting and then put a link to that inside IMG tags on the page you want it displayed:

Code:
<img src="http://website.com/image.jpg" alt="Alternative Text">< /img>

:)

the img tag doesn't have a closing tag, so it's:

Code:
<img src="http://website.com/image.jpg" alt="Alternative Text" />

If you enjoy a bit of your ol' XHTML.
 
Pine said:
the img tag doesn't have a closing tag, so it's:

Code:
<img src="http://website.com/image.jpg" alt="Alternative Text" />

If you enjoy a bit of your ol' XHTML.

Ahh, course. It's self closing :o Thanks :)
 
Back
Top Bottom