0
How to add an image on a website?
4 Antworten
+ 7
The format is:-
<img src="image.url">
It is self closing tag means it does require to have an end tag.
And to get url:-
https://sololearn.com/compiler-playground/Wy3lrXNwGsgJ/?ref=app
+ 4
https://www.sololearn.com/learn/courses/html-introduction
check out this amazing HTML intro course. You can learn more things in web development
+ 1
Use <img> tag, remember it's not a container tag, it's empty tag, and use src attributes to add the image link
the code should looks like:
<img src="the image link">
Sometimes it won't work, if that happened, you should check the image link if it's correct, or not it won't show
In the introduction to html course, they also teach about using it
0
You cant