Please how can I link a photo to my solo learn web project using the solo learn website | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Please how can I link a photo to my solo learn web project using the solo learn website

And is it also possible to link images from you own device like images in your phone

23rd Jun 2019, 9:46 PM
Charles Ukanga
Charles Ukanga - avatar
2 Answers
+ 9
you basically need to use the <img> tag if the picture is online, all you need is to include its URL in the <img> tag <img src="enter URL here" />
30th Jun 2020, 9:35 AM
BRight
BRight - avatar
+ 6
about linking images from your device, Copy the image u wanna display on the webpage to the same folder where your .html file is located. Add the value to the src attribute as your image name with its extension For example : <img src = ā€œenter filename hereā€ />
30th Jun 2020, 9:42 AM
BRight
BRight - avatar