As from the tutorial here, I can see that this is a valid markup dl, dt, dd structure,
<dl>
<dt>Name: </dt>
<dd>John Don</dd>
<dt>Age: </dt>
<dd>23</dd>
<dt>Gender: </dt>
<dd>Male</dd>
<dt>Day of Birth:</dt>
<dd>12th May 1986</dd>
</dl>
but this only structure for a single person, what about multiple people/ persons? What about this below? I want to have a header and then followed by a list of items,
<dl class="name-header">
<dt>Name: </dt>
<dt>Age: </dt>
<dt>Gender: </dt>
<dt>Day of Birth:</dt>
</dl>
<dl class="person-item">
<dd>John Don</dd>
<dd>23</dd>
<dd>Male</dd>
<dd>12th May 1986</dd>
</dl>
<dl class="person-item">
<dd>John Don</dd>
<dd>23</dd>
<dd>Male</dd>
<dd>12th May 1986</dd>
</dl>
Thanks.
EDIT:

Consider a table: