Can anyone tell about the Performance between ordinary closing tag and tag self tag in html?
<area />
<base />
<basefont />
<br />
<hr />
<input />
<img />
<link />
<meta />
I saw these from here(Using the XHTML closing slash (/) on normal tags?).
Actually My Main question is why we use this ?
I read the answer from :What's the difference between <tag></tag> and <tag /> in HTML?
the Answer is :
A self-closing tag has no children and no value for inner text (null):
Is it correct? Because We can write inner text in these fields
<input />
<img />
<link />
So I am still confusing. Please give me a clear answer.