# Xml + html

**URL:** https://forum.kirupa.com/t/xml-html/126119
**Category:** Uncategorized
**Created:** [October 20, 2004, 5:33pm UTC](https://forum.kirupa.com/t/xml-html/126119 "2004-10-20T17:33:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Sammo](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/sammo/32/779_2.png) [@Sammo](https://forum.kirupa.com/u/Sammo)
#### Post date: [October 20, 2004, 5:33pm UTC](https://forum.kirupa.com/t/xml-html/126119/1 "2004-10-20T17:33:56Z")

</div>

How can I include an XML document in an HTML document,

so I have:

```auto
<?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>

```

```auto
<html>
 <body>
 <!-- I want the xml data i have to be planted here! -->
 </body>
 </html>

```
