Просмотр поста #17761: Нужна помощь в исправлении синтаксической ошибки? Вам сюда!

.
Santass

Помогите, как исправить эту ошибку? Line 15, Column 50: end tag for "tr" which is not finished
…y><table style="width: 100%;"><tr></tr></table><div class="header"> Привет, Го…



Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.