HTML file and image should be in same directory or at least set up a site directory structure and put all images in their own folder. Paths to your hard drive are not going to work when you upload the files to the web.
All files in same folder:
Code:
<img style="width: XXpx; height: YYpx; border: 0;" src="model3.jpg" alt="Text Description">
Image file in own folder:
Code:
<img style="width: XXpx; height: YYpx; border: 0;" src="images/model3.jpg" alt="Text Description">
You can use:
Code:
<img style="width: XXpx; height: YYpx; border: 0;" src="../model3.jpg" alt="Text Description">
or
Code:
<img style="width: XXpx; height: YYpx; border: 0;" src="../images/model3.jpg" alt="Text Description">
See relative/full paths.
Bookmarks