66 lines
1.2 KiB
XML
66 lines
1.2 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE shop [
|
|
<!ELEMENT shop (section+)>
|
|
<!ELEMENT section (shelf+)>
|
|
<!ELEMENT shelf (product*)>
|
|
<!ATTLIST shelf type CDATA "">
|
|
<!ELEMENT product (name,price)>
|
|
<!ELEMENT name (#PCDATA)>
|
|
<!ELEMENT price (#PCDATA)>
|
|
|
|
]>
|
|
|
|
<shop>
|
|
<section>
|
|
<shelf type="papiernicze">
|
|
<product>
|
|
<name>Długopis</name>
|
|
<price>3</price>
|
|
</product>
|
|
<product>
|
|
<name>Ołówek</name>
|
|
<price>2</price>
|
|
</product>
|
|
<product>
|
|
<name>Zeszyt</name>
|
|
<price>5</price>
|
|
</product>
|
|
</shelf>
|
|
<shelf type="odzież">
|
|
<product>
|
|
<name>Spodnie</name>
|
|
<price>100</price>
|
|
</product>
|
|
<product>
|
|
<name>Czapka</name>
|
|
<price>20</price>
|
|
</product>
|
|
</shelf>
|
|
</section>
|
|
<section>
|
|
<shelf type="elektryczne">
|
|
<product>
|
|
<name>Żarówka</name>
|
|
<price>10</price>
|
|
</product>
|
|
</shelf>
|
|
<shelf type="spożywcze">
|
|
<product>
|
|
<name>Masło</name>
|
|
<price>8</price>
|
|
</product>
|
|
<product>
|
|
<name>Mleko</name>
|
|
<price>2</price>
|
|
</product>
|
|
<product>
|
|
<name>Jajka</name>
|
|
<price>4</price>
|
|
</product>
|
|
<product>
|
|
<name>Parówki</name>
|
|
<price>6</price>
|
|
</product>
|
|
</shelf>
|
|
</section>
|
|
</shop> |