Dogefy your website!
This prices below are in fiat but auto converted using dogefy.js
Fiat Price A): $10.00 (10.00 Dollars)
Fiat Price B): $20.00 (20.00 Dollars)
Fiat Price C): $30.00 (30.00 Dollars)
Fiat Price D): €15.00 (15.00 Euros)
Fiat Price F): €25.00 (25.00 Euros)
Fiat Price G): €35.00 (35.00 Euros)
Download Code on GIT

  <!-- Dogefy your website and convert all Fiat Prices into the current Dogecoin Value -->  
  <!-- Add this code below before  tag and change the fiat_currency and fiat_currency_symbol to match your website-->

  <script type="text/javascript">

  // we set your website fiat currency and fiat symbol to be automaticly replaced with the Dogecoin Value and Symbol
  // this is to get the Dogecoin price from coingecko API
  // must be the same used on your website and must match something like $123.456 or €123.456 etc.
  const fiat = {
    "usd": "$",
    "eur": "€"
  };    
  
  </script>


  <!-- we load JQuery if your website does not load. You can remove it if you want -->
  <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js" crossorigin="anonymous"></script>
  
  <!-- we load the magic file and must be in the same root as your website do to CORS policy of coingecko API -->
  <script type="text/javascript" src="dogefy.js" crossorigin="anonymous"></script>
  
  <!-- End of Dogefy your website and convert all Fiat Prices into the current Dogecoin Value-->