What does it mean that img elements are self-closing, I didn’t get it.
Thank you
Hila
What does it mean that img elements are self-closing, I didn’t get it.
Thank you
Hila
some elements you need an opening tag and a closing tag, for example h1
<h1>This is an h1 element</h1>
others are self closing, you have only one tag:
<img src="http://www.exampleurl.com/myImage.jpg">
Thank you so much! I got it!