--- title: Icons --- ## Icons The Bootstrap framework provides you Glyphicons for icon. Bootstrap doesn’t include an icon library by default, but it has a handful of recommendations for you to choose from. While most icon sets include multiple file formats, we prefer SVG implementations for their improved accessibility and vector support. ### How to use To use Bootstrap icon create a span tag with base class `glyphicon` and individual icon class. Use it only on elements that contain no text content and have no child elements. **Code Example:** `` `` The Bootstrap framework provides you with over 250 icons called glyphs. They come in font format from the Glyphicon Halflings set. ### How To Use To use bootstrap icons you simply create `` tag and apply the applicable CSS class for the icon. A code example has been provided below. **Code Example:** `` ### Bootstrap Glyphicon Class List This is an example of the CSS classes that bootstrap provides for glyphicons. More of them is avalible here `.glyphicon glyphicon-plus` This is bootstrap's plus/add icon. `.glyphicon glyphicon-trash` This is bootstrap's trash/delete icon. _Note: Do not include the dot in the HTML Class Attribute, referring to the classes with a dot is only used when adjusting the classes in CSS._ ### Bootstrap Icon in Buttons ```html ``` _Note: Bootstrap's Glyphicons icon is not available on bootstrap V4_ ### Things to keep in mind **Don't mix with other components** Icon classes cannot be directly combined with other components. They should not be used along with other classes on the same element. Instead, add a nested `` and apply the icon classes to the ``. **Only use icons on empty elements** Icon classes should only be used on elements that contain no text content and have no child elements. ### More Information: - [Bootstrap Glyphicons Icons Doc](https://getbootstrap.com/docs/3.3/components/#glyphicons)