Get started with embedo CDN

MIT licensed

Embedo is a lightweight library for creating interactive, embeddable content, such as forms or maps, for websites.

Tags:
  • embedo
  • plugin
  • oembed
  • social-media-plugin
  • embed

Stable version

Copied!

How to start using embedo CDN


<!DOCTYPE html>
<html>
<head>
    <title>Get started with embedo CDN - cdnhub.io</title>
    <script src="https://cdn.cdnhub.io/embedo/1.14.0/embedo.min.js"></script>
</head>
<body>
    <button id="loadEmbedo">Load Embedo</button>
    <script>
        document.getElementById('loadEmbedo').addEventListener('click', () => {
            Embedo.init({
                apiKey: 'YOUR_API_KEY', // Replace with your Embedo API key
                container: document.body, // Replace with the desired container
                width: 600, // Width of the embed
                height: 450, // Height of the embed
                language: 'en' // Language of the embed
            });
        });
    </script>
</body>
</html>
Copied!
Copied!

All versions