How can I include an XML document in an HTML document,
so I have:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/css" href="note.css"?>
<note>
<to>Judy</to>
<from>Tom</from>
<comment> hello! </comment>
</note>
<html>
<body>
<!-- I want the xml data i have to be planted here! -->
</body>
</html>