Form
<xml> ... </xml>
Attributes
attribute |
default |
description |
id |
none |
specifies the unique ID |
class |
none |
specifies the style sheet class |
style |
none |
specifies the style sheet |
Explanation
The xml tag specifies an embeded XML document and is a
Internet Explorer specific extention (Opera also supports it). In browsers that don't support it, The data enclosed by the XML tag will be displayed directly.
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<p>XML documents can be embeded.</p>
<xml>
<userdata>
<username>K.FuRuhata</username>
<age>63</age>
</userdata>
</xml>
</body>
</html>