Flowbite logo

Flowbite Detector

Check any public website to see whether it uses Flowbite.

Public signal scan
Fast lookup
No signup required

Scan a website

Enter a URL and Stackcrawler will inspect public technology signals.

Websites using Flowbite

Browse real website examples detected with Flowbite.

View examples

More CSS Frameworks detectors

Compare related tools and identify the wider stack behind a website.

Browse detectors

What we check

Stackcrawler looks for public page markers, scripts, platform fingerprints, metadata, and other visible implementation clues.

How can you detect if a website uses Flowbite?

Detecting if a website uses Flowbite involves examining the page source for specific indicators that are characteristic of Flowbite. Here’s a step-by-step guide on how to do it:

  1. Open the Page Source: Right-click on the webpage and select “View Page Source” or press Ctrl+U (Windows) or Cmd+Option+U (Mac) to open the page source code.
  2. Search for Flowbite in CSS or JS Files: Use Ctrl+F (Windows) or Cmd+F (Mac) to open the search function and look for the following keywords:
    • /flowbite: This is a common pattern in Flowbite’s URLs and resources. You might see something like <link href="/path/to/flowbite.css"> or <script src="/path/to/flowbite.js">
  3. Check for Flowbite Version: Look for a version number or tag that follows the pattern /flowbite@[0-9\.]+/ in the CSS or JS references. For example: <link href="/path/to/[email protected]">
  4. Inspect Class Names: Flowbite components typically include specific class names. Look through the HTML elements for classes like flowbite or other specific class patterns defined in Flowbite documentation.
  5. Check for Flowbite-Specific Components: Look for HTML structures that correspond to Flowbite components, such as dropdowns, modals, cards, and alerts. You might find code snippets like <div class="alert flowbite"> or <div class="dropdown flowbite">.
  6. Search for Flowbite Initialization: Some websites may contain JavaScript code for initializing Flowbite components. Look for code snippets mentioning Flowbite.init() or similar initialization calls.
  7. Look for Documentation Links: Sometimes websites will link to the Flowbite documentation for further reference. Search the page source for any URLs that connect to flowbite.com/docs or similar.