Search code examples
html

How to close <img> tag properly?


<img src='stackoverflow.png'>
<img src='stackoverflow.png'></img>
<img src='stackoverflow.png' />

Which is correct?


Solution

  • <img src='stackoverflow.png' />
    

    Works fine and closes the tag properly. Best to add the alt attribute for people that are visually impaired.