+ 1
How can i put an image from my pc on a html code, so people can view it
Html advice
5 ответов
+ 12
If you want to insert an image that is in your local storage you have to write the exact file path of that specific image. Such as...
<img src="file:///sdcard/Download/image.jpg">
and unless everyone has the same file, linking using file:/// means only you will see them.
otherwise you may use image hosting sites, just post a image to http://m.imgur.com or https://postimages.org or https://imgbb.com
and get a unique link for your image. then copy and paste the image URL.
+ 10
<img src="C:\Users\aldiaz\Desktop\DynamicsTest1.jpg" style="height:200px;width:100px;float:left">
+ 1
Thank you will try, thanks for the feedback
+ 1
<img src="the link that google gives"/>
0
Will try thanks