This commit is contained in:
Agata Kulhawczuk 2019-01-25 19:01:03 +00:00
parent 2cb3d51d6e
commit b632f589a4
5 changed files with 34 additions and 0 deletions

BIN
cwiczenia01.docx Normal file

Binary file not shown.

BIN
cwiczenia02.docx Normal file

Binary file not shown.

BIN
cwiczenia03.docx Normal file

Binary file not shown.

BIN
cwiczenia04.docx Normal file

Binary file not shown.

34
cwiczenia05.txt Normal file
View File

@ -0,0 +1,34 @@
<?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="food">
<product>
<name>bread</name>
<price>1,50</price>
</product>
</shelf>
<shelf type="stationery">
<product>
<name>notebook</name>
<price>2,00</price>
</product>
</shelf>
<shelf type="clothing">
<product>
<name>blouse</name>
<price>50,00</price>
</product>
</shelf>
</section>
</shop>