Add HTML : How to insert images
You can insert images yourself by using HTML
In order to insert an image you have uploaded just use the markup code below.
HTML markup :
|
<img src="./images/image_name">
|
|
In the code above, "src" is used to specify the URL of the image that we wish to use.
In this case if we are using a shortcut to refer to an image that we uploaded to webCreator.
If we want to refer to an image that we did not upload we must use the full qualified URL
i.e. <img src="http://www.domainname.com/image/some_image.jpg">
E.g. If your site builder is http://www.e1net.net/members/hk806name
Then, your image will be http://www.e1net.net/members/hk806name/images/picture2.gif
So to insert this image to other parts of your website, your image source should be:-
<img src="http://www.e1net.net/members/hk806name/images/picture2.gif">
|