<?xml version="1.0"?>
<!DOCTYPE endangered_species SYSTEM "http://www.cookwood.com/xml/examples/dtd_defining/sequence.dtd">
<endangered_species>

<!-- according to sequence.dtd, the animal element must contain, in order, exactly one each of name, threats, weight, length, source, picture, and subspecies -->

<animal>
	<!--only one name element is permitted -->
	<name language="English">Tiger</name>
	<threats><threat>poachers</threat>
	<threat>habitat destruction</threat>
	<threat>trade in tiger bones for traditional Chinese medicine (TCM)</threat>
	</threats>
	
	<!--the weight and length elements are _not_ optional -->
	<weight>500 pounds</weight>
	<length>3 yards from nose to tail</length>
	<source sectionid="120" newspaperid="21"></source>
	<picture filename="tiger.jpg" x="200" y="197"/>
		
	<!--only one subspecies element is permitted -->
	<subspecies>
		<name language="English">Amur or Siberian</name>
		<name language="Latin">P.t. altaica</name>
		<region>Far East Russia</region>
		<population year="1999">445</population>
		</subspecies>
	
	</animal>
	</endangered_species>
