+ 1
Image
Hi guys I tried to use a image and I did this in codeplayground but it didn't work,why? You can also see it by my latest project "effective learning strategies" https://code.sololearn.com/WV11xwG4VhV4/?ref=app I did it like this: <img src="https://images.app.goo.gl/5eXjbKbxSNCSFgku9">
2 Respostas
+ 7
Faraz Haghbayan .
The reason your image is not showing up is because the URL you provided does not directly link to the image file.
#Make sure your image URL path is correct..
Learn this about images path
How to host/upload an image
https://code.sololearn.com/Wy3lrXNwGsgJ/?ref=app
How to host/upload an image with Dropbox
https://code.sololearn.com/WW6t4B73kJVz/?ref=app
more about images:
https://code.sololearn.com/WT3661NHpV3B/?ref=app
your image path is wrong..
<img src="https://images.app.goo.gl/5eXjbKbxSNCSFgku9">instead of this.
Use this correct link..
<img src="https://i.ibb.co/Zg2GX7H/images.png" alt="images" border="0">
+ 2
Thank you soooo much!