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> tags - Because the heading and paragraph are in between the same
<body> and </body> tags - Because the elements have the same amount of space in front of them in the code
- Because headings and paragraphs are always grouped together
Because the heading and paragraph are in between the same <div> and </div> tags.