Add Korean venture startup cards, glossary terms, guides, and search to any website. 4 widget types, 4 themes, Shadow DOM isolation, zero dependencies.
Copy and paste this code into your HTML to embed a startup card:
<!-- Load widget -->
<script src="https://cdn.jsdelivr.net/npm/ventureinkorea-embed@1/dist/embed.min.js"></script>
<!-- Startup card -->
<div data-ventureinkorea="entity" data-slug="toss"></div>
<!-- Glossary term -->
<div data-ventureinkorea="glossary" data-slug="series-a" data-theme="dark"></div>HTML
These widgets load data from the VentureInKorea API:
Four widget types to embed Korean venture ecosystem content anywhere:
4 themes (light, dark, sepia, auto) and 2 styles (modern, minimal). The auto theme follows the user's system preference via prefers-color-scheme.
| Attribute | Values | Default |
|---|---|---|
data-ventureinkorea | entity, glossary, guide, search | Required |
data-slug | Startup or term slug | Required |
data-theme | light, dark, sepia, auto | auto |
data-size | compact, default, large | default |
data-style-variant | modern, minimal | modern |
data-no-snippet | true (disable rich snippets) | Enabled |
The widget is served from jsDelivr CDN with automatic version pinning:
<!-- Recommended: jsDelivr (auto-cached, global CDN) -->
<script src="https://cdn.jsdelivr.net/npm/ventureinkorea-embed@1/dist/embed.min.js"></script>
<!-- Alternative: npm install -->
npm install ventureinkorea-embedSHELL