---
title: "Glyphicons icons in Bootstrap"  
description: "Glyphicons icons in Bootstrap"  
author: "Ethan Karla"  
published: 2021-07-28  
updated: 2021-07-28  
canonical: https://www.mindstick.com/forum/156631/glyphicons-icons-in-bootstrap  
category: "bootstrap"  
tags: ["bootstrap"]  
reading_time: 1 minute  

---

# Glyphicons icons in Bootstrap

What are Glyphicons [icons](https://yourviews.mindstick.com/view/87475/10-successful-startups-that-turn-to-icons-of-india) in [Bootstrap](https://www.mindstick.com/articles/1555/image-viewer-using-bootstrap-carousel)? How to use it in our [project](https://www.mindstick.com/articles/105927/how-to-excel-at-managing-multiple-projects)?

## Replies

### Reply by Anonymous User

Glyphicon icons are available for use in Bootstrap 4 but glyphicons have been removed from Bootstrap after the release of Bootstrap 5. If you want to use icons in your project you can use Font-Awesome library. But if you are planning to use Bootstrap 4 then you can use glyphicons. The example below might help you figure out how to achieve this:

```
<!DOCTYPE html>
<html>
  <head>
    <meta name='viewport' content='width=device-width, initial-scale=1'>
    <link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css'>
  </head>
  <body>
    <div class='container'>
      <h2>Bootstrap 4 Glyphicon</h2>
      <p>Print icon: <span class='glyphicon glyphicon-print'></span></p>
      <p>Social  Media Follow Button :
        <a href='#' class='btn btn-primary'>
          <span class='glyphicon glyphicon-plus'></span> Follow
        </a>
      </p>
    </div>
  </body>
</html>
```

Hope this will help you.

Happy Coding!


---

Original Source: https://www.mindstick.com/forum/156631/glyphicons-icons-in-bootstrap

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
