How do I make the image show? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How do I make the image show?

I know how to add an image on a computer, but my computer broke and now i use my phone and adding images is different. I've done the html course but that doesn't provide the help I need. Instead of an image appearing there is a small picture of a picture icon. I want to use my own images from my phone as well but not to sure how that works. I need some help!

5th Jun 2020, 11:08 AM
Lisa :)
Lisa :) - avatar
2 Answers
+ 3
upload the image to google Drive or Dropbox then use this link in your code
5th Jun 2020, 11:15 AM
Muhammad Galhoum
Muhammad Galhoum - avatar
+ 3
You can add an image from your device internal storage into your html document without uploading it on a cloud platform but only you would be able to see that image . Here's what you have to do , Since you are using a phone open your file manager select the image you want to add, now open up it's details now copy down it's storage url. Paste that storage url into your html document inside the image tag . Do it like this, <img src="file://image url"> and it's done. Or directly upload it on dropbox create a link there and paste it inside the image tag but replace the 'www' with 'dl' .
5th Jun 2020, 1:58 PM
🔥VENAGE🔥
🔥VENAGE🔥 - avatar