prabin badyakar
prabin badyakar

Reputation: 1746

Bootstrap icon is not displaying

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

This is my code. I wanted to add Date Icon but its not displaying . Its displaying some kind of default icon , something like rectangle with text EIo9 .I'm using latest bootstrap link

Upvotes: 0

Views: 209

Answers (3)

nnn
nnn

Reputation: 338

All you need is bootstrap css file getting included in a right way.

You can take it from localhost or CDN so the code will be:

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<span class="glyphicon glyphicon-calendar"></span>

Here's the working example. Good luck!

Upvotes: 0

bhanu09
bhanu09

Reputation: 61

If you are adding this link to your page then, it should work.

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

Upvotes: 1

Jason Wong
Jason Wong

Reputation: 11

Make sure your assets directory location are correct? like css,images and fonts i.e.

Upvotes: 0

Related Questions