How do we know the heading and paragraph are part of the same group of elements?

<html>
<body>
<div>
<h4>Mimo</h4>
<p>Learn to Code</p>
</div>
<div>
<img src="https://mimo.app/r/team.png">
</div>
</body>
</html>]]>
Because the heading and paragraph are in between the same <div> and </div> tagsBecause the heading and paragraph are in between the same <body> and </body> tagsBecause the elements have the same amount of space in front of them in the codeBecause headings and paragraphs are always grouped together

Because the heading and paragraph are in between the same <div> and </div> tags.