I was validating my blog while working on it and it comes up with some weird errors like:
end tag for “img” omitted, but OMITTAG NO was specified.
…eft" alt="Make Money Online Blog"></a></div>You may have neglected to close an element, or perhaps you meant to “self-close” an element, that is, ending it with “/>” instead of “>”.
I was lost on how to fix this but while searching the internet. If it doesn’t have an end tag. You must end the tag yourself.
How would I do that?
You may be wondering, it’s simple.
ORIGINAL
<img src=”http://www.makemoneyonline-guide.com/wp-content/themes/makemoneyv1/images/makemoneyonline-logo.png” align=”left” alt=”Make Money Online Blog”>
CORRECT VALIDATED IMG tag
<img src=”http://www.makemoneyonline-guide.com/wp-content/themes/makemoneyv1/images/makemoneyonline-logo.png” align=”left” alt=”Make Money Online Blog” />
A simple / (slash) at the end of the tag will close the tag.
No Tag