0
how can i add image from my pc storage??? what should i write after <img src= ????
3 Antworten
+ 1
I understand your question, Ahnaf.
try this:
let's assume that you have an image called "screenshot.png" .. and your image is on windows, in drive D, and in a folder called "test"
you would write the following HTML:
<img src="file:///D:/test/screenshot.png" alt="image">
Tip: some new browsers like chrome are so smart that they will let you write: D:/test/screenshot.png
and your image will still show up normally
I hope that answers your question.
+ 3
your image's file path
<IMG src="here/my/image.jpg" alt="this my img >image</img>
0
<img src="foldername/imagename.jpg">