Font Awesome Not Working In Chrome
Posted
by
Connor Black
on Stack Overflow
See other posts from Stack Overflow
or by Connor Black
Published on 2013-01-16T19:24:38Z
Indexed on
2013/06/29
10:21 UTC
Read the original article
Hit count: 250
So I'm trying to prototype a marketing page and I'm using bootstrap and the new font awesome file. The problem is when I try to use an icon all that gets rendered on the page in a big square.
Here's how I include the files in the head:
<head>
<title>
</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-responsive.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/app.css">
<!--[if IE 7]>
<link rel="stylesheet" href="css/font-awesome-ie7.min.css">
<![endif]-->
</head>
And here's an example of me trying to use an icon:
<i class="icon-camera-retro"></i>
But all that gets rendered in a big square. Does anyone know what could be going on?
© Stack Overflow or respective owner