<country> Country (in an address)

Country name used within an address.
Related Elements
An address (<address>) element contains a postal address and/or other contact information such as a company or organization name. If an address is divided into lines, the lines can be preserved using the <addr-line> element. Typically, the <addr-line> element holds one physical or logical line of an address, containing undifferentiated portions of an address such as organization names, street addresses, post box numbers, building numbers, mailstops, etc. They are called “lines” because addresses are frequently divided onto multiple lines, and this encoding allows that fact to be preserved. If the address is just a block of undifferentiated text, numbers, or special characters, the entire address may be placed inside a single <addr-line> element.
There are several ways to tag an address: An address element (<address>) does not contain any text, only lower-level address elements.
Attributes

Base Attributes

Models and Context
May be contained in
Description
Text, numbers, or special characters, zero or more
Content Model
<!ELEMENT  country      (#PCDATA %country-elements;)*                >
Expanded Content Model

(#PCDATA)*

Tagged Samples
<country> as part of standards organization location <std-org-loc>
... 
<std-org std-org-level="2" std-org-role="co-producer" std-org-type="sdo">
 <std-org-name>CSA Group</std-org-name>
 <std-org-abbrev>CSA</std-org-abbrev>
 <std-org-loc
  ><addr-line>5060 Spectrum Way, Suite 100</addr-line>
  <city>Mississauga</city>
  <state>Ontario</state>
  <country>Canada</country>
  <postal-code>L4W 5N6</postal-code>
  <uri>http://www.csagroup.org/</uri></std-org-loc>
</std-org>
...
<country> used in address
...
<p>Comments on standards should be submitted to the following address:
 <address>
  <addr-line>Secretary, IEEE-SA Standards Board</addr-line>
  <addr-line>445 Hoes Lane</addr-line>
  <addr-line><city>Piscataway</city>, <state>NJ</state> 
   <postal-code>08854</postal-code></addr-line>
  <addr-line><country>USA</country></addr-line>
 </address>
</p>
...