<!-- 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-->