charlotteah
02-05-2005, 02:11 PM
when you go on a site and you want an image, there is a html code underneath that you put on your site to get the image.
I have my own images but how do I find out or get a html to give to other ppl?
:cloud: :cloud: :cloud:
:idea:
Sheila
02-05-2005, 02:19 PM
You want people to be able to copy and paste the code right?....
You could use a text area (http://www.lissaexplains.com/html5.shtml#textarea) to put the codes in so people can copy it, or you could use these....
< = <
> = >
charlotteah
02-05-2005, 02:42 PM
Hi it didn't work what sheila told me to do above.
you have an image on your site that you want to share with others?
option 1.
display the image and tell them to right click, save it, and let them use it as they desire.
option 2.
know the location of the image on your host space...
http://www.whatever.com/yourspace/image.gif (or whatever)
then you can code in...
<form><textarea>
<img src="http://www.whatever.com/yourspace/image.gif">
</textarea></form>
(there are other ways to display the image location to your visitors too instead of textarea, but that seems to be a common way)