Guys why is my image not displaying | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Guys why is my image not displaying

<img src=" https://images.app.goo.gl/a9g96kogBoY8bsTW9">

7th Sep 2023, 8:48 AM
ZZIWA FRANK
ZZIWA FRANK - avatar
4 Answers
+ 6
ZZIWA FRANK ... See this and learn how to get correct image path.. https://www.sololearn.com/post/1742383/?ref=app Don't send direct messages in DM.. if have you any query ask here.. Your image URL path is incorrect. try this link:- <img src="https://i.ibb.co/N3KGLXq/face-book-icon-vector-isoalted-white-background-face-book-icon-vector-facebook-log-illustration-1367.jpg">
7th Sep 2023, 8:53 AM
Darpan kesharwani🇮🇳[Inactive📚]
Darpan kesharwani🇮🇳[Inactive📚] - avatar
+ 2
img src =" example.com". For instance.
7th Sep 2023, 3:06 PM
ASIM FARHEEN ❄️⚡⚡🤳⚡⚡❄️
ASIM FARHEEN ❄️⚡⚡🤳⚡⚡❄️ - avatar
+ 1
I think you have to write <img src="link"> But in your code, I see that you write down space between " and https. You need to delete it and write code with right code format!
8th Sep 2023, 6:34 PM
Hpone Hein Htet
Hpone Hein Htet - avatar
+ 1
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ-ov-MG2dPPT4totuB8fu872v--AOpCsyqaQ&usqp=CAU"> The link you have inside quotes is a link to a web page that is referencing that image file. You need to dig a little further and see if the link is an actual image file or something else, like an html file or whatever. A good test for this is to right-click on the image and select "SAVE AS..." and look to see what kind of file extension the file has. Sometimes it's easier said than done and you might want to use the developer panel of your web-browser and mouse over the image and look for nested html image links .. then just <img src=" that link " > -Merk
9th Sep 2023, 8:13 AM
Mark Hudson
Mark Hudson - avatar