How can i create a web page using XML?


2 Responses to “How can i create a web page using XML?”

  • kirun:

    The way to do it would be to use XHTML, but there are good reasons not to. In summary, you cannot serve your page as XHTML to Internet Explorer, so your server must say the page is HTML. This loses the strictness advantage of XHTML (you won’t notice when errors are introduced, that would break your pages when switching to serving as XHTML), and can also cause incompatibilities with scripting.

    It’s safer to use HTML Strict, and convert your site when real browser support exists.

  • ignacionr2:

    You can either use XHTML (that’s the same tags as in HTML but in lowercase and conforming to XML, plus the indication of the schema), or you may create any kind of XML content and process it with an XSLT stylesheet.

Leave a Reply