0
How to link images online in html file?
2 Answers
0
Upload your images on your server (ideally on folder named img) then add img tag with src attribute pointing to the img. Eventually add the name of the folder before the img name!
Img tag syntax: <img src='foldername/imgname.extension'>
0
Use the <img> tag and the "src" attribute to specify the URL of the image.
e.g <img src="http://www.domain.com/path/image.jpg">