Embed the QR generator

One iframe, your language, your colour

Your visitors need a QR code, and sending them to another site to make one is a small leak you can close. The generator below runs inside an iframe on any page, static HTML or WordPress alike. There is no key to request, no account, and nothing to install on your server.

Live example

This is the generator running inside an iframe, exactly as it would on your page. Try it, then copy the snippet under it.

The snippet

<iframe src="https://free-qr.com/embed/"
        title="QR code generator"
        loading="lazy"
        width="100%" height="900"
        style="border:0"></iframe>

Two things you can change

Language. Add a two letter code to the path: https://free-qr.com/embed/de for German, /embed/tr for Turkish, /embed/es for Spanish. The interface, the tabs and the error messages follow. Without a code the generator is English.

Accent colour. Add ?color= and a hex value to match your own design: https://free-qr.com/embed/de?color=004488. The hash is optional, three and six digit values both work, and anything that is not a colour is ignored rather than breaking the page.

Picking a height

The generator is about 900 pixels tall on a desktop and taller on a phone, because the tab strip wraps. An iframe does not grow with its content, so either give it room (1100 pixels is safe on mobile) or let the page scroll inside the frame, which is what the snippet above does.