Brand icon in bootstrap5

To add a brand icon in Bootstrap 5, you can use the built-in class bi along with the specific icon class provided by Bootstrap Icons. Here is an example:

<span class="bi bi-bootstrap"></span>

In the above code snippet, bi is the class for Bootstrap Icons and bi-bootstrap is the specific icon class for the Bootstrap logo.

Make sure you have included the Bootstrap Icons CSS file in your HTML document for the icons to display properly. You can include it using the following CDN link:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">

Remember to replace the version number in the above link with the latest version available.

By using the above code, you will be able to display the Bootstrap brand icon in your Bootstrap 5 project.