Add the equator wizard to your website

 

Embed into an existing page

Embed the wizard on your own website, or anywhere you can insert HTML.

On large screens, the wizard gets loaded in an iframe wherever you put the code, filling the width of its parent element.

On small screens, the wizard still gets loaded in an iframe, but expands to fill the entire window area when activated.

See an example

<!-- Change the width and height values to suit you best -->
<div class="typeform-widget" data-url="https://peneloperesearch.typeform.com/to/g2dKFN?precheck=true" data-text="Wizard_w_pen" style="width:100%;height:500px;"></div>
<script>(function(){var qs,js,q,s,d=document,gi=d.getElementById,ce=d.createElement,gt=d.getElementsByTagName,id='typef_orm',b='https://s3-eu-west-1.amazonaws.com/share.typeform.com/';if(!gi.call(d,id)){js=ce.call(d,'script');js.id=id;js.src=b+'widget.js';q=gt.call(d,'script')[0];q.parentNode.insertBefore(js,q)}})()</script>
 

Launch the wizard in a popup

You can add a button or link to your page which, when clicked, launches the wizard in a popup window without taking visitors away from your site. 

Launch popup from button

<a class="typeform-share button" href="https://peneloperesearch.typeform.com/to/g2dKFN?precheck=true" data-mode="1" target="_blank">Find reporting guidelines</a>
<script>(function(){var qs,js,q,s,d=document,gi=d.getElementById,ce=d.createElement,gt=d.getElementsByTagName,id='typef_orm',b='https://s3-eu-west-1.amazonaws.com/share.typeform.com/';if(!gi.call(d,id)){js=ce.call(d,'script');js.id=id;js.src=b+'share.js';q=gt.call(d,'script')[0];q.parentNode.insertBefore(js,q)}id=id+'_';if(!gi.call(d,id)){qs=ce.call(d,'link');qs.rel='stylesheet';qs.id=id;qs.href=b+'share-button.css';s=gt.call(d,'head')[0];s.appendChild(qs,s)}})()</script>

Launch popup from a link

<a class="typeform-share link" href="https://peneloperesearch.typeform.com/to/g2dKFN?precheck=true" data-mode="1" target="_blank">Find reporting guidelines</a>
<script>(function(){var qs,js,q,s,d=document,gi=d.getElementById,ce=d.createElement,gt=d.getElementsByTagName,id='typef_orm',b='https://s3-eu-west-1.amazonaws.com/share.typeform.com/';if(!gi.call(d,id)){js=ce.call(d,'script');js.id=id;js.src=b+'share.js';q=gt.call(d,'script')[0];q.parentNode.insertBefore(js,q)}})()</script>
 

Add the wizard As a page

Make the wizard a page on your website. It will get loaded in an iframe, taking up the entire window area.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">

  <title>Wizard_w_pen</title>

  <!--CSS styles that ensure the wizard takes up all the available screen space (DO NOT EDIT!)-->
  <style type="text/css">
    html{
      margin: 0;
      height: 100%;
      overflow: hidden;
    }
    iframe{
      position: absolute;
      left:0;
      right:0;
      bottom:0;
      top:0;
      border:0;
    }
  </style>
</head>
<body>
  <iframe id="typeform-full" width="100%" height="100%" frameborder="0" src="https://peneloperesearch.typeform.com/to/g2dKFN?precheck=true&embed=full"></iframe>
  <script type="text/javascript" src="https://s3-eu-west-1.amazonaws.com/share.typeform.com/embed.js"></script>
</body>
</html>