<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <meta name="twitter:card" content="summary" />
  <meta name="twitter:description" content="Learn to create charts that look great anywhere using SVG and D3.js" />
  <meta name="twitter:title" content="D3 + SVG: How to Create Flawless Charts for Any Screen" />
  <meta name="twitter:site" content="@bclinkinbeard" />
  <meta name="twitter:image" content="https://imgur.com/meMiVpd.png" />
  <meta name="twitter:creator" content="@bclinkinbeard" />
  <title>D3 + SVG: How to Create Flawless Charts for Any Screen</title>
  <link href="https://fonts.googleapis.com/css?family=Montserrat:600i,700" rel="stylesheet">
  <link href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" rel="stylesheet">
  <style>
    h2, .price, .testimonial h3 {
      font-family: 'Montserrat', sans-serif;
    }

    .pricing {
      width: 100vw;
      margin-left: calc(-1 * ((100vw - 100%) / 2));
    }
  </style>
  <!-- Piwik -->
  <script type="text/javascript">
    var _paq = _paq || [];
    /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
    _paq.push(['trackPageView']);
    _paq.push(['enableLinkTracking']);
    (function () {
      var u = "//bclinkinbeard.innocraft.cloud/";
      _paq.push(['setTrackerUrl', u + 'piwik.php']);
      _paq.push(['setSiteId', '1']);
      var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
      g.type = 'text/javascript'; g.async = true; g.defer = true; g.src = u + 'piwik.js'; s.parentNode.insertBefore(g, s);
    })();
  </script>
  <!-- End Piwik Code -->
</head>

<body>

  <div class="flex">
    <div class="w-1/5 xl:w-1/4"></div>
    <div class="w-5/5 xl:w-1/2 font-sans text-lg text-grey-darkest leading-normal">
      <h1 class="text-center py-4 text-4xl">
        Thank You for Purchasing!
      </h1>

      <div class="pricing flex flex-col md:w-2/3 mx-auto">
        <div class="z-20 mt-4 lg:mt-0 shadow-md text-slate text-center">
          <div class="py-4 flex-col items-center shadow-lg bg-blue-dark text-white">
            <h1 class="text-center text-3xl">
              D3 + SVG eBook with Free Bonus
            </h2>
          </div>
        </div>
      </div>

      <div id="discount" class="w-5/6 md:w-2/3 mx-auto">
        <h2 class="pt-8 pb-1 text-3xl">
          Want a discount on that video course?
        </h2>
        <p class="pb-4">
          <em>Build Interactive JavaScript Charts with D3 v4</em> is a 2.5 hour course that has been watched by several thousand developers. Let me walk you through 26 D3.js lessons that start with installing the library and go all the way through to complex animated transitions.
        </p>
        <h2 class="pt-8 pb-1 text-3xl">
          Special pricing for buyers only
        </h2>
        <p class="pb-4">
          As a thank you for purchasing the book, you can <strong>buy the video course for just $25!!</strong>
        </p>
        <p class="pb-4">
          This deal will NOT be offered anywhere else or again.
        </p>
        <div class="text-center m-6 mx-auto">
          <a href="https://transactions.sendowl.com/packages/60235/AD48420E/view" rel="nofollow">
            <button class="bg-green hover:bg-green-light text-white p-6 border-b-4 border-green-dark hover:border-green rounded uppercase">
              Buy <strong>26 videos for $25</strong>
            </button>
          </a>
        </div>
      </div>
      <div id="share" class="hidden w-5/6 md:w-2/3 mx-auto">
        <h2 class="pt-8 pb-1 text-3xl">
          Can I have one last click?
        </h2>
        <p class="pb-4">
          The more people that know about this book, the better.
        </p>
        <p class="pb-4">
          Click to tweet?
        </p>
        <div class="text-center m-6 mx-auto">
          <a href="https://transactions.sendowl.com/packages/60235/AD48420E/view" rel="nofollow">
            <button class="bg-purple hover:bg-purple-light text-white p-6 border-b-4 border-purple-dark hover:border-purple rounded uppercase">
              <strong>Tweet Out Loud</strong>
            </button>
          </a>
        </div>
      </div>
    </div>

    <div class="w-1/5 xl:w-1/4"></div>
  </div>

  <script>
    // if (Math.round(Math.random()) === 0) {
    //   document.querySelector('#discount').style.display = 'block';
    // } else {
    //   document.querySelector('#share').style.display = 'block';
    // }
  </script>
  <script type="text/javascript" src="https://transactions.sendowl.com/assets/sendowl.js"></script>
  <!-- Drip -->
  <script type="text/javascript">
    var _dcq = _dcq || [];
    var _dcs = _dcs || {};
    _dcs.account = '4436187';

    (function() {
      var dc = document.createElement('script');
      dc.type = 'text/javascript'; dc.async = true;
      dc.src = '//tag.getdrip.com/4436187.js';
      var s = document.getElementsByTagName('script')[0];
      s.parentNode.insertBefore(dc, s);
    })();
  </script>
</body>

</html>
