Is there any site that can convert XML to HTML?

It's called XSLT (eXtenisble Stylesheet Language - Transformation). XSLT allows transformation of an XML document to another XML document. Since HTML is just an XML document[1], XSLT can do the job.

[1] In reality, HTML is an SGML document. XHTML is a subset of HTML that is based on XML. But this distinction isn't that important for this purpose.
 
There are a number of solutions to this, with very basic knowledge of both languages, some examples are below:
XML Genie
http://www.kilowattsoftware.com/XmlGeniePage.htm

XML Fox
http://www.xmlfox.com/

HTML Tidy which is available with a full resource kit and description from IBM.com
http://www.ibm.com/developerworks/library/x-tiptidy.html#resources
or W3 Schools website:
http://www.w3.org/People/Raggett/tidy/

These services should be relatively painless and easy to use.

Good Luck!
Sean Colicchio
Server Engineer
Host My Site
http://www.hostmysite.com/?utm_source=bb
 
Back
Top