0
On the code playground, how do you get a image to insert with <img>
1 Answer
+ 1
One way of doing it when you are at a computer and connected to the internet, is to use
<img src="(URL of image here)">
Unfortunately I do not believe SoloLearn's Learn HTML app has that functionality (You can still try as I might be wrong)
the other way is to replace the URL with a file path to the image you are trying to show (I suggest a relative file path btw)
if you want to try the URL way of doing it, you can use W3school at http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_image_test
You can also learn about the <img> at W3schools at http://www.w3schools.com/tags/tag_img.asp
Good Luck!