What Does XML Look Like?

XML Example

<?xml version="1.0"?>
<?xml:stylesheet href="countryList.css" type="text/css"?>
<!DOCTYPE countryCollection SYSTEM "countryList.dtd">
<countryList>
   <country>
      <officialName>United States of America</officialName>
      <label>Common Names:</label> 
         <commonName>United States</commonName>
         <commonName>U.S.</commonName>
      <label>Capital:</label> 
         <capital>Washington, D.C.</capital>
      <label>Major Cities:</label> 
         <majorCity> Los Angeles </majorCity>
         <majorCity> New York </majorCity> 
         <majorCity> Chicago </majorCity> 
         <majorCity> Dallas </majorCity> 
  </country>
</countryList>