Advertisement
viditkothari

products.xml

Oct 16th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.85 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet type="text/css" href="products.css"?>
  3. <products>
  4. <product id="p1" class="special">
  5.     <name>Delta</name>
  6.     <price>800</price>
  7.     <stock>4</stock>
  8.     <country>Denmark</country>
  9.    </product>
  10.    <product id="p2">
  11.       <name>Golf</name>
  12.       <price>1000</price>
  13.       <stock>5</stock>
  14.       <country>Germany</country>
  15.    </product>
  16.    <product id="p3">
  17.       <name>Alpfa</name>
  18.       <price>1200</price>
  19.       <stock>19</stock>
  20.       <country>Germany</country>
  21.    </product>
  22.    <product id="p4">
  23.       <name>Foxtrot</name>
  24.       <price>1500</price>
  25.       <stock>5</stock>
  26.       <country>Australia</country>
  27.    </product>
  28.    <product id="p5" class="special">
  29.       <name>Tango</name>
  30.       <price>1225</price>
  31.       <stock>3</stock>
  32.       <country>Japan</country>
  33.    </product>
  34. </products>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement