0
Hello! How to insert an image in an html document
insert an image
3 Answers
+ 1
Just copy and replace this, <img src="filename.jpg"/> This is most useful for a local file (if the file is in the same folder as the html document you're trying to add it to) otherwise you'll need to include the filepath for the image. like so <img src="user/yourcomputer/images/filename.jpg"/> or you can place a link inside the quotation marks. I hope this helps :D
+ 1
Thank you