this page is about the
<xml>
element; for XML syntax in general, see XML.
The HTML <xml></xml>
element indicates that the content is XML markup embedded within an HTML document. Content of this element should obey all the rules for legal XML syntax.
Attributes
ns
- This specifies the URL of the XML namespace that the XML content is bound to. Values are either an absolute or relative URL.prefix
- This indicates the namespace prefix of the XML contents. The value is an alphanumeric string.src
- This attribute specifies an external source for the XML document. Values are either an absolute or relative URL.
- Global Attributes
Example:
<xml id="myid"> <idcard> <name gender="male">SSgtGriffin</name> <email address="ssgtgriffin@example.com" /> </idcard> </xml>