1. Use the below code for AVIF to PNG Converter Widget.
    
      <div id="avifEmbed"></div>
      <script>
        // Create the iframe element
        var iframe = document.createElement('iframe');
        iframe.src = "https://aviftopng.org/embed-avif-to-png";
        iframe.width = "auto";
        iframe.height = "300";
        iframe.frameborder = "1";
        iframe.scrolling = "auto";

        // Append the iframe to the container
        document.getElementById('avifEmbed').appendChild(iframe);

        // Add the IMP
        var imp = document.createElement('div');
        imp.innerHTML = 'Powered by <a href="https://aviftopng.org" target="_blank">AvifToPNG.org</a>';
        imp.style.fontSize = '12px';
        imp.style.color = '#666666';
        document.getElementById('avifEmbed').appendChild(imp);
      </script>
      
  
2. Use the below code for WebP to PNG Converter Widget.
      
<div id="webpEmbed"></div>
<script>
  // Create the iframe element
  var iframe = document.createElement('iframe');
  iframe.src = "https://aviftopng.org/embed-webp-to-png";
  iframe.width = "auto";
  iframe.height = "300";
  iframe.frameborder = "1";
  iframe.scrolling = "auto";
  
  // Append the iframe to the container
  document.getElementById('webpEmbed').appendChild(iframe);
  
  // Add the IMP
  var imp = document.createElement('div');
  imp.innerHTML = 'Powered by <a href="https://aviftopng.org/webp-to-png" target="_blank">AvifToPNG.org</a>';
  imp.style.fontSize = '12px';
  imp.style.color = '#666666';
  document.getElementById('webpEmbed').appendChild(imp);
</script> 
  
3. Use the below code for PDF to PNG Converter Widget.
      
<div id="pdfEmbed"></div>
<script>
  // Create the iframe element
  var iframe = document.createElement('iframe');
  iframe.src = "https://aviftopng.org/embed-pdf-to-png";
  iframe.width = "auto";
  iframe.height = "300";
  iframe.frameborder = "1";
  iframe.scrolling = "auto";
  
  // Append the iframe to the container
  document.getElementById('pdfEmbed').appendChild(iframe);
  
  // Add the IMP
  var imp = document.createElement('div');
  imp.innerHTML = 'Powered by <a href="https://aviftopng.org/pdf-to-png" target="_blank">AvifToPNG.org</a>';
  imp.style.fontSize = '12px';
  imp.style.color = '#666666';
  document.getElementById('pdfEmbed').appendChild(imp);
</script>