info
Displays grouped sets of information.
Overview
The info element displays displays grouped sets of data in either table or list form, depending on its parent element. For example, in an infoList element, the info element is often used to display a list of directors and actors for a product. Here’s an example that shows the director and main actors for a movie.
<infoList>
<info>
<header>
<title>Director</title>
</header>
<text>John Appleseed</text>
</info>
<info>
<header>
<title>Actors</title>
</header>
<text>Anne Johnson</text>
<text>Tom Clark</text>
<text>Maria Ruiz</text>
</info>
</infoList>