/* Add custom Js code below */ document.addEventListener("DOMContentLoaded", function () { const p = document.querySelector('.copyright-text p'); if (p) { const poweredBy = document.createElement('span'); poweredBy.innerHTML = ` | Designed by Rubik Agencey`; p.appendChild(poweredBy); } });