How to link images online in html file? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to link images online in html file?

26th Jul 2017, 2:31 PM
Richa sahu
Richa sahu - avatar
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'>
26th Jul 2017, 2:36 PM
Drax
Drax - avatar
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">
26th Jul 2017, 2:46 PM
Saka Oluwadamilola
Saka Oluwadamilola - avatar