FIREPath

Embed the FIRE Calculator

Add the free FIREPath calculator to your own site or blog. It works on any platform that allows an <iframe> — no account required.

Embed this calculator

Paste this into your site. Keep the "Powered by FIREPath" line — it lives in your page (not the iframe) so the link is credited correctly.

<iframe
  id="firepath-embed"
  src="https://gofirepath.com/embed"
  title="FIREPath — Free FIRE Calculator"
  width="100%"
  height="900"
  style="border:1px solid #e5e5e5;border-radius:12px;max-width:840px"
  loading="lazy"
></iframe>
<p style="font-size:12px;text-align:center">
  <a href="https://gofirepath.com/?utm_source=embed&utm_medium=widget&utm_campaign=embed" target="_blank" rel="nofollow ugc noopener">Powered by FIREPath</a> — free FIRE calculator
</p>
<script>
  window.addEventListener('message', function (e) {
    if (!e.data || e.data.type !== 'firepath:resize') return;
    var frame = document.getElementById('firepath-embed');
    if (frame && typeof e.data.height === 'number') {
      frame.style.height = e.data.height + 'px';
    }
  });
</script>

How it works

  • Paste the snippet anywhere in your page's HTML.
  • The calculator loads from /embed with minimal chrome (no navigation, no ads).
  • Keep the "Powered by FIREPath" line: it sits in your page (not inside the iframe) so the credit link is recognized by search engines.
  • Adjust the height if your layout needs more room.