Insert elements at specific positions with these methods:
parent.prepend(el); // First child
parent.append(el); // Last child
el.before(newEl); // Before el
el.after(newEl); // After el
parent.insertBefore(newEl, referenceEl);
Choose the method that matches where you need the element.