/* Add custom JS code below */ (function() { const title = document.querySelector('h2[data-selia="home-about-title"]'); if (title && !document.getElementById('title-after-image')) { const img = document.createElement('img'); img.id = 'title-after-image'; // img.src = 'https://i.ibb.co/zHDkY7K3/image-3-5.png'; img.src = 'https://i.ibb.co/8g3h5MCb/KDC-LOGO.png'; img.style.display = 'block'; img.style.marginTop = '5px'; img.style.marginBottom = '5px'; img.style.maxWidth = '150px'; // You can adjust the width here title.after(img); } })(); document.addEventListener("DOMContentLoaded", function () { var footerHTML = ` `; document.body.insertAdjacentHTML('beforeend', footerHTML); if (!document.querySelector('link[href*="font-awesome"]')) { var fa = document.createElement('link'); fa.rel = 'stylesheet'; fa.href = 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css'; document.head.appendChild(fa); } });