Instagram Bio Link Generator

Build a custom "link in bio" page. Add your name, bio, and multiple links — then preview and copy the full HTML to host anywhere.

Profile

Links

Live Preview

How to Use

  1. 1

    Fill in your name, handle, and bio. Pick a theme color.

  2. 2

    Add your links (website, YouTube, social profiles) — live preview updates instantly.

  3. 3

    Click Copy Full HTML Page and host the file on GitHub Pages, Netlify, or any web host.

📖 Want to learn more?

Read our in-depth guide: tips, best practices, FAQs, and real-world examples.

  • Host for free on GitHub Pages
  • Add UTM parameters to links to track clicks
  • Keep bio under 150 characters for Instagram
Full Guide
${name.charAt(0)}

${name}

${handle}

${desc}

${linksHtml}
`; } function updatePreview() { const frame = document.getElementById('preview-frame'); frame.srcdoc = buildHTML(); } function copyHTML() { navigator.clipboard.writeText(buildHTML()).then(() => alert('HTML copied! You can host this file anywhere.')); } renderLinks(); updatePreview();