Html-css-images

I want to add images from my local system through html tags, how can i do these?

if you are using an editor online, you need to update the image somewhere and use the link. you can’t link directly from local to online

yeah but, i’m using visual studio code.

Easiest thing to do, place your image in the same directory as the code you are working on, then:

<img src='image.jpg' />

Hope this helps.

yeah, i have get it!! thanks