Showcase your BD SaaS Zone ranking on your personal website, portfolio, or product landing page.
Paste this script tag once in your website's <head> or before the closing </body> tag.
<script src="https://cdn.jsdelivr.net/gh/dishan1223/bdsaaszone-badge-widget@latest/embed.js" defer></script>The widget needs your unique identifier (slug). You can find this in your startup's URL on BD SaaS Zone.
* Slug is usually the lowercase version of your startup name with hyphens.
Place the <bds-rank-badge> tag wherever you want the badge to appear.
<bds-rank-badge slug="YOUR_SLUG" size="large"></bds-rank-badge><bds-rank-badge slug="YOUR_SLUG" size="small"></bds-rank-badge><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Startup</title>
<!-- 1. Include the Script -->
<script src="https://cdn.jsdelivr.net/gh/dishan1223/bdsaaszone-badge-widget@latest/embed.js" defer></script>
</head>
<body>
<header>
<h1>Welcome to My Startup</h1>
</header>
<main>
<p>We are building the future.</p>
<!-- 2. Place the Badge -->
<div style="margin-top: 20px;">
<bds-rank-badge slug="your-startup-name" size="large"></bds-rank-badge>
</div>
</main>
</body>
</html>