If your builder accepts custom HTML, it can run ENTD drawings. The recipe is always the same: the script once, then a container or a link.
Look for “Custom code”, “Code injection”, “Head code” or “Tracking code” in the site settings and paste the script there. No site-wide option? Paste it on each page with a drawing, next to the container.
<script src="https://entd.tech/em/entd-embed.js"
data-connection-id="YOUR_CONNECTION_ID" async></script>Paste the container into an HTML / Embed / Code element — or set the link of any button to #entd-draw-YOUR_DRAWING_ID.
<div data-entd-drawing="YOUR_DRAWING_ID"></div>Editors rarely run custom scripts, so always check the published site.
Some builders put HTML elements inside an iframe — for example the “Embed HTML” element on Wix. A drawing opened from there would be squeezed into that small box. In that case:
#entd-draw-YOUR_DRAWING_ID;Paste the script with a header/footer code plugin or your theme settings, then add the container in a Custom HTML block. Running WooCommerce? Use the ENTD Draws plugin instead.
data-entd-drawing gets the branded ENTD button inside it.data-entd-drawing to your own <a> or <button> — the drawing opens when it’s clicked, your design stays as is.#entd-draw-YOUR_DRAWING_ID. No HTML block needed — handy where you can only change a button’s URL.Add these attributes to the container to change the look of the ENTD button:
data-entd-theme — light, dark or autodata-entd-size — small, medium or largedata-entd-shape — rectangular or pilldata-entd-text — enter_draw, join_giveaway, participate, try_your_luck or any text of your owndata-entd-full-width="true", data-entd-logo="false"<div data-entd-drawing="YOUR_DRAWING_ID"
data-entd-theme="dark"
data-entd-shape="pill"
data-entd-text="Join the giveaway"></div>Most sites built with a website builder have no customer accounts. That’s fine: each visitor gets an anonymous ID stored in their browser, and entries are still checked for duplicates and bots before the draw. If your site does have accounts, pass the visitor’s ID so entries are tied to your customers:
<script>
// Optional: the ID of the logged-in visitor, if your site has accounts
window.ENTDEmbedConfig = { userId: 'CUSTOMER_ID' }
</script>#entd-draw-YOUR_DRAWING_ID with your Drawing ID.entd.tech in script-src and *.entd.tech in frame-src, and api.entd.tech in connect-src.