ARIA Landmark Region Patterns
Based on the W3C ARIA Authoring Practices for Landmark Regions
A contentinfo landmark is a way to identify common information at the bottom of each page within a website, typically called the "footer" of the page, including information such as copyrights and links to privacy and accessibility statements.
ARIA 1.2 Specification: contentinfo landmark.
contentinfo landmark.contentinfo landmark should be a top-level landmark.document and/or application roles (e.g. typically through the use of iframe and frame elements),
each document or application role may have one contentinfo landmark.
contentinfo landmark, each should have a unique label.footer element is a contentinfo landmark when it is not a descendant of any of the following HTML sectioning elements:
articleasidemainnavsection
<footer>
<h2>Contact, Policies and Legal<h2>
.... contentinfo area content ....
</footer>
A role="contentinfo" attribute is used to define a contentinfo landmark.
<div role="contentinfo">
<h2>Contact, Policies and Legal<h2>
.... contentinfo area content ....
</div>