>> English << | česky | Español | Türkçe | Português | Nederlands | Français | Deutsch | По-русски | Italiano | 中文 | ქართული | Magyar | PolskiZVON > Tutorials > Namespace Tutorial
>> Example 5 << | Prev | Next | Contents

The value of the xmlns attribute identifies the namespace, not the prefix. In this example, all elements belongs to the same namespace although different prefixes are used.


     <lower:aaa xmlns:lower = "http://zvon.org/lowercase" xmlns:upper = "http://zvon.org/lowercase"
          xmlns:xnumber = "http://zvon.org/lowercase" >

          <lower:bbb >
               <lower:ccc />
          </lower:bbb>
          <upper:BBB >
               <upper:CCC />
          </upper:BBB>
          <xnumber:x111 >
               <xnumber:x222 />
          </xnumber:x111>
     </lower:aaa>