Friday, June 23, 2017

Must XHTML Elements be properly nested?

XHTML Elements Must Be Properly Nested: Description is given below

In HTML, some elements can be improperly nested within each other, like this:
<b><i>This text is bold and italic</b></i>
In XHTML, all elements must be properly nested within each other, like this:
<b><i>This text is bold and italic</i></b>