Image doesn't come up

ThIs is my code to insert an image and a link into it. However, the image doesn’t appear on the browser :<

<a href=“http://www.imdb.com/“><img src="http://stfimages.in/images/2017/01/20/justin-timberlake-the-book-of-love-ost-5877a566ec5b4.jpg”; title=”Click to watch trailer”; alt=“IMDB”; /> </a>

Can somebody tell me what the problem is???

I cleaned up your code.
You need to use triple backticks to post code to the forum.
See this post for details.

1 Like

> <a href=“http://www.imdb.com/“><img src="http://stfimages.in/images/2017/01/20/justin-timberlake-the-book-of-love-ost-5877a566ec5b4.jpg”; title=”Click to watch trailer”; alt=“IMDB”; /> </a>

The problem is there’s a whole bunch of typos. Check this:

<a href="http://www.imdb.com"><img src="http://stfimages.in/images/2017/01/20/justin-timberlake-the-book-of-love-ost-5877a566ec5b4.jpg" title="Click to watch trailer" alt="IMDB"></a>

1 Like

omg thank you so much, it worked, i still don’t understand this part though. When i replace the link http://www.imdb.com with the link http://www.imdb.com/video/imdb/vi2369631769?playlistId=tt1330018&ref_=tt_ov_vi, and then click on the image, “ERR_NAME_NOT_RESOLVED” came up.

Can you post your code with new link applied?