+ 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
2 Respuestas
+ 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" />
+ 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” />