// Create a new div element var div = document.createElement('div'); div.className = 'made-in-ksa'; // Create a new image element var img = document.createElement('img'); img.className = 'ksa-made-img'; img.src = 'https://i.imgur.com/GUyzpME.png'; img.style.width = '100%'; img.style.height = '45px'; // Append the image to the div div.appendChild(img); // Get the target element by class name var targetElement = document.querySelector('.footer-vat'); // Append the div to the target element targetElement.appendChild(div); const copyrights = document.querySelector('.copyrights'); copyrights.innerHTML = 'صنع بواسطة jawavah';