+ 1
How to put images from my phone into the html/css codes????
4 Answers
+ 4
You have to upload them into some server first, for example - imgbb.com Then you will have a path to image and you will be able to use it like <img src="https://...path..." ...
+ 2
Upload the images to Google Drive or Dropbox the use it's link as a link in a src attribute like this
<img src="link" alt= "flower">
Hams A. El-Zahaby
+ 1
Thank you guysâ€â€
0
The following html tag load your phone image to local webpage.
<img src="file:///storage/emulated/0/Download/79169-5.png" />
Please note that this only work on your phone ONLY.
If you need your image can be viewed from everyone's browsers use Hatsy Rei's method.
-I copied it from another person