<addr-line> Address Line

One physical or logical line of 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
Content Model
<!ELEMENT  addr-line    (#PCDATA %addr-line-elements;)*              >
Expanded Content Model

(#PCDATA | bold | fixed-case | italic | monospace | num | overline | roman | sans-serif | sc | strike | underline | ruby | alternatives | inline-graphic | inline-media | private-char | chem-struct | inline-formula | abbrev | index-term | index-term-range-end | milestone-end | milestone-start | named-content | styled-content | sub | sup | city | country | fax | institution | institution-wrap | phone | postal-code | state)*

Tagged Sample

In <std-org-loc>

...
<std-meta>
 <title-wrap>...</title-wrap>
 <std-ident>...</std-ident>
 <std-org-group>
  ...
  <std-org std-org-type="sdo" std-org-role="lead">
   <std-org-name>American Petroleum Institute</std-org-name>
   <std-org-abbrev>API</std-org-abbrev>
   <std-org-loc
    ><addr-line>1220 L Street, N.W.</addr-line>
    <city>Washington</city>
    <state>D.C.</state>
    <postal-code>20005</postal-code>
    <uri>http://www.api.org/</uri></std-org-loc>
  </std-org>
 </std-org-group>
 ...
</std-meta>
...