Elements having zero or more occurrences of the same element can be defined. The "*" sign is used to declare that the child element can occur zero or more times.
<?xml version="1.0" standalone="yes"?> <!DOCTYPE rootelement [ <!ELEMENT rootelement (childelement*)> <!ELEMENT childelement (#PCDATA)> ]> <rootelement> </rootelement>