Bootstrap Q&A Logo
Bootstrap Q&A Part of the Q&A Network

How can I use Bootstrap icons in my project?

Asked on Oct 03, 2025

Answer

Bootstrap Icons are a library of SVG icons that you can include in your project to enhance the UI. You can easily integrate them by linking the Bootstrap Icons stylesheet in your HTML.
<!-- BEGIN COPY / PASTE -->
        <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
        
        <!-- Example of using a Bootstrap icon -->
        <i class="bi bi-alarm"></i>
        <!-- END COPY / PASTE -->
Additional Comment:
  • To use Bootstrap Icons, include the provided `` tag in your HTML ``.
  • Replace `bi-alarm` with any other icon name from the Bootstrap Icons library.
  • Icons are scalable and can be styled using CSS, just like any other text or element.
  • Ensure your project has internet access to load the icons from the CDN.
✅ Answered with Bootstrap 5 best practices.
← Back to All Questions