How to create a site map with sibling elements

Hi, I have a target target page as follows

<div>
<h4>Data 1</h4>
<p>content 1</p>
<h4>Data 2</h4>
<p>content 2</p>
<h4>Data 3</h4>
<p>content 3</p>
</div>

to be

Data 1, content 1
Data 2, content 2
Data 3, content 3.

How can I design a sitemap for this page?

Because parent elements are missing, I'm in trouble.