+ 1
If I have an image in my phone's gallery, how can I insert it in a webpage while coding
How can I create that link of an image I have in my phone's gallery
5 Respostas
+ 2
1) Go to this site: https://imgbb.com
2) Upload your image
3) Collect the 'direct link'
4) Use it as the value of 'img' tag like so: <img src="link">
And you're done!
0
Copy the image in the folder I I'll n which your html files are and simply code it just like you are coding in your pc
0
in sololearn code playground that cannot not work, because the html is stored to sololearn servers ^^
search in the QnA: there's tons of duplicates question about this "problem" (not really one, but kind of limitation) and how to workaround (basically, you need to upload your image somewhere on internet and use the absolute http url of it in your coding ;)
0
You use the code format <img src ="folder name /pics.jpeg or jpg or png">. It depends on the picture format. So let's say the picture you intend on using is in a folder called Google and the name of the picture is ball. jpeg. The code will be <img src ="Google/ball. jpeg>. I hope you understand this
- 1
1) Go to this site: https://imgbb.com
2) Upload your image
3) Collect the 'direct link'
4) Use it as the value of 'img' tag like so: <img src="link">