Try our affiliated browser extension - redirect to BreezeWiki automatically!

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

See Global HTML Attributes.


Example:

<xml id="myid">
<idcard>
   <name gender="male">SSgtGriffin</name>
   <email address="ssgtgriffin@example.com" />
</idcard>
</xml>