Why did the W3C introduce XHTML as an alternative to HTML?
What will be an ideal response?
To make the transition to XML-based Web pages easier, the W3C combined XML and HTML to create XHTML, which is almost identical to HTML, except that it uses strict XML syntax to describe the parts of a document. XHTML is actually considered to be an XML application because it is written in XML, and the XHTML language must adhere to the same requirements as XML. One of XHTML's chief advantages is that XHTML documents are backward compatible with older browsers.
You might also like to view...
When indexing an Access database, the Yes (No Duplicates) option builds an index so that every value in that field in the table is unique
Indicate whether the statement is true or false
What is the output of the following code?
int x = 0; if (x < 4) { x = x + 1; } System.out.println("x is " + x); a. x is 0 b. x is 1 c. x is 2 d. x is 3 e. x is 4