--%>

Explain the good illustrations of closing XHTML elements

Explain the good illustrations of closing XHTML elements.

E

Expert

Verified

Some good examples are here of closing XHTML elements as follows:

• < html >...< /html >- It is closing the html element along with a closing tag.

• < head >...< /head > - It is closing the head element along with a closing tag.

• < title/ > - It is closing the title element instantly along with no content.

• <body>...< /body > - It is closing the body element along with a closing tag.

• < p >...< /p > - It is closing the p element along with a closing tag.

• < script/ > - It is closing the script element instantly along with no content.

   Related Questions in Programming Languages