HTML/CSS

The simplest way to embed a Waitlisty form - directly in a vanilla HTML / CSS site

Here's an example of embedding the script and div elements into a vanilla html / css site.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <!-- Our Waitlisty CSS -->
    <link rel="stylesheet" href="https://jzcjrtlxrpzxgszlwttl.supabase.co/storage/v1/object/public/formbuilder_v2/formBuilder_v2.css" />
    <title>You Wesbite</title>
  </head>
  <body>
    <div>This is a website with a form in it.</div>
    <!-- Our Waitlisty widget -->
    
    <!-- Our Waitlisty javascript -->
    <script src="https://jzcjrtlxrpzxgszlwttl.supabase.co/storage/v1/object/public/formbuilder_v2/formBuilder_v2.js" defer></script>
  </body>
</html>

Last updated