Select Language:

xmlns

about xmlns :
  • dir attribute specifies the xml namespace for a document.

xmlns usage :

<"element" xmlns="value">
xmlns value :
  1. http://www.w3.org/1999/xhtml : The namespace to use (for XHTML documents)

xmlns example:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title of the document</title>
</head>
<body>
The content of the document......
</body>
</html>



origin by : w3schools.com

0 comments: