Skip to content Skip to sidebar Skip to footer

Glyphicon Not Showing Up In Browser

I am learning angular and I want to show Glyphicon (Heart)on browser. full code: https://github.com/tsingh38/Angular2 My Component class: Heart.component.html contains :

Solution 1:

You need to add bootstrap.css in index.html page in <head> section as shown below,

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

path can be your local path also.


Post a Comment for "Glyphicon Not Showing Up In Browser"