wdi
This commit is contained in:
parent
2cb3d51d6e
commit
b632f589a4
BIN
cwiczenia01.docx
Normal file
BIN
cwiczenia01.docx
Normal file
Binary file not shown.
BIN
cwiczenia02.docx
Normal file
BIN
cwiczenia02.docx
Normal file
Binary file not shown.
BIN
cwiczenia03.docx
Normal file
BIN
cwiczenia03.docx
Normal file
Binary file not shown.
BIN
cwiczenia04.docx
Normal file
BIN
cwiczenia04.docx
Normal file
Binary file not shown.
34
cwiczenia05.txt
Normal file
34
cwiczenia05.txt
Normal 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>
|
Loading…
Reference in New Issue
Block a user