Bootstrap Glyphicons

Bootstrap glyphicons are the icon fonts that are used in websites. Bootstrap provides 260 glyphicons from the Glyphicons Halflings set. Some examples of Glyphicons are:

  • Envelope glyphicon
  • Print glyphicon
  • Search glyphicon
  • Download glyphicon

To use the icons, you have to use the following code just anywhere in the code.

Syntax:

<span class="glyphicon glyphicon-search"> </span>


Bootstrap Glyphicons Example

Here is an example of bootstrap glyphicons:

Example:

<p>Envelope Icon:
<a href="#"> <span class="glyphicon glyphicon-envelope"> </span> </a>
</p>
<p>Search Icon:
<a href="#"> <span class="glyphicon glyphicon-search"> </span> </a>
</p>
<p>Print Icon:
<a href="#"> <span class="glyphicon glyphicon-print"> </span> </a>
</p>

Run Example