Answer:
parent
Explanation:
A parent element is usually the outer element that contains one or more other elements, which are called child elements.
Consider the following HTML code:
<div id="parent">
<p id="childNumberOne"></p>
<p id="childNumberTwo"></p>
<p id="childNumberThree"></p>
</div>
The Three P are children of the parent div, and siblings of each other.