1 | Keyword ELEMENT Introduces a new element <!ELEMENT title .........> |
2 | Element name must begin with a letter, and may additionally contain digits and some punctuations, i.e. `.', `-', `_', and `:' |
3 | If an element can hold no child elements, and also no text, then it is known as empty element and denoted by EMPTY |
4 | An element declared to have a content .of ANY may contain all of the other elements declared in the DTD |
5 | <!ELEMENT p ANY> <!ELEMENT image EMPTY> |
6 | Empty element usage: <image></image> or <image/> |