All Integrations
HTML / JavaScript
The simplest way to add a Laudica testimonial wall to any website. Just copy and paste a script tag — no build tools or frameworks required.
1. Copy your embed code
Open the wall builder in your Laudica dashboard. Click the Embed Code tab and select HTML / JS. Copy the snippet.
2. Paste into your HTML
Add the snippet wherever you want the testimonial wall to appear in your page:
<!-- Laudica Testimonial Wall -->
<div id="laudica-embed"></div>
<script
src="https://cdn.laudica.com/embed.js"
data-wall-id="YOUR_WALL_ID"
data-container="#laudica-embed"
async
></script>Replace YOUR_WALL_ID with the ID shown in your wall builder.
3. Alternative: iframe embed
If you prefer a fully sandboxed embed or your hosting platform doesn't allow custom JavaScript, use an iframe instead:
<iframe
src="https://app.laudica.com/embed/YOUR_WALL_ID"
width="100%"
height="500"
frameborder="0"
style="border: none; max-width: 100%;"
loading="lazy"
></iframe>Tips
- Domain allowlisting — if you've restricted your wall to specific domains in the wall builder, make sure your site's domain is in the list.
- Responsive by default — the embed automatically adapts to its container width. No extra CSS needed.
- Placement — works in any location: landing pages, footers, sidebars, dedicated testimonial pages.