|
|
Your img tag looks like this:
<img src="file:///C:/My%20Documents/My%20Pictures/David%20author.jpg" width="389" height="597">
It's linking to the image on your local C: drive, whereas it should be uploaded to your site. I'd remove the space from the file name as well, if I were you. If, for example, you create a directory called 'images' and upload the file to it, your img tag should look like this:
<img src="/images/Davidauthor.jpg" width="389" height="597">
That should solve the problem. |
|
|