VentureInKorea Embed Widget

Add Korean venture startup cards, glossary terms, guides, and search to any website. 4 widget types, 4 themes, Shadow DOM isolation, zero dependencies.

Get Started GitHub npm

Quick Start

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

Live Demo

These widgets load data from the VentureInKorea API:

Widget Types

Four widget types to embed Korean venture ecosystem content anywhere:

Startup Card

Full startup card with name, category, funding stage, and description. Links to the startup profile on VentureInKorea.

data-ventureinkorea="entity"

Glossary Term

Venture/startup glossary definition card. Sourced from the VentureInKorea Glossary.

data-ventureinkorea="glossary"

Guide Card

Venture guide summary card with excerpt and link. Browse all VentureInKorea Guides.

data-ventureinkorea="guide"

Search Widget

Search form linking to VentureInKorea search results.

data-ventureinkorea="search"

Themes & Styles

4 themes (light, dark, sepia, auto) and 2 styles (modern, minimal). The auto theme follows the user's system preference via prefers-color-scheme.


Light

Dark

Sepia

Auto

Widget Options

AttributeValuesDefault
data-ventureinkoreaentity, glossary, guide, searchRequired
data-slugStartup or term slugRequired
data-themelight, dark, sepia, autoauto
data-sizecompact, default, largedefault
data-style-variantmodern, minimalmodern
data-no-snippettrue (disable rich snippets)Enabled

CDN Options

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