We call elements inside other elements nested elements, for example, nesting <h1>Top Story</h1> inside <div></div>.

<html>
<body>
<div>
<h1>Top Story</h1>
</div>
</body>
</html>]]>

The order is <div>, <h1>Top Story</h1>, then </div>.