A search or new thread would have been better, but the forum section is correct.
Your problem is quite easy. In xhtml you need closing tags. Since <br> has none, it is not valid. However, if you add ' /' to it, it will work. So, <br> will be <br />. This will be the case for all tags without closing tags, like <br>, <hr> and <img>.
|