Home > Net >  Are these icons missing from the Bootstrap icons web font, or am I doing something wrong?
Are these icons missing from the Bootstrap icons web font, or am I doing something wrong?

Time:05-26

I'm using the web font for Bootstrap Icons, and most of my icons are working, but there are a few which are listed on the website that don't seem to be included in the web font. These include: bi-envelope-plus,bi-quote and bi-mortarboard. I'm using the CDN from https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css and including them as follows:

<i ></i>

Are some of the icons not included in the web font, or am I going crazy? The website provides the syntax to use them with the web font.

CodePudding user response:

Use the latest CDN from Bootstrap site

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

Working Example

  • Related