Jeff
Jeff

Reputation: 2738

Font-Awesome doesn't load fonts

I'm trying to use Font-Awesome 4.2.0, I can see the css is loaded, but the fonts are not. I'm am using Chrome, but have the same issue in FF and IE too.

I've created a stripped down version to demostrate this:

<!DOCTYPE html>
<html>

<head>
  <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>

<body>
  Remove It - <i class="fa-remove"></i>
</body>

</html>

http://plnkr.co/edit/eF6tPerRYOZHAdzzkdyk?p=preview

Obviously, I'd like to know how to solve this, but more importantly, I'd like to know how I can track down font problems better in the future. Using the Chrome dev tools, I can see that the font is not loaded, but I don't see why.

Upvotes: 2

Views: 1726

Answers (1)

zisoft
zisoft

Reputation: 23078

Try:

<i class="fa fa-remove"></i>

Upvotes: 5

Related Questions