8. DTD for Empty Elements

If an element is declared with the content model of EMPTY, this means that the declared element does not contain any type of content.

Example 8.1 An Element with the EMPTY Content Model
<?xml version="1.0" standalone="yes"?>
<!DOCTYPE rootelement [
<!ELEMENT rootelement (EMPTY)>
]>
<rootelement />