Home > OS >  img tag in html doesnt show image however visting the actual source the image shows up
img tag in html doesnt show image however visting the actual source the image shows up

Time:10-10

when i visit this link

https://readm.org/uploads/chapter_files/cover/tbn/1631469330_198x0.jpg

it works perfectly , but when i use it in an img tag it doesnt show up

<img src="https://readm.org/uploads/chapter_files/cover/tbn/1631469330_198x0.jpg" alt="cover image" class="tm-service-img">

and this is the only website (readm.org) with which i am facing this problem i tried sending requests to the image as well , it showed 200 response i dont know whats the problem now , please help if you know a fix :)

CodePudding user response:

It is running fine here in sandbox(snippet) . There may be some typo mistakes

<img src="https://readm.org/uploads/chapter_files/cover/tbn/1631469330_198x0.jpg" alt="cover image" class="tm-service-img">

  • Related