Twitter Bootstrap 3 icon displaying a square -


font files in right place , html code charset utf-8.

thats code:

<!doctype html> <html> <head>     <meta chaset="utf-8">     <title>teste icone</title>     <link rel="stylesheet" type="text/css" href="css/bootstrap.css"> </head> <body>      <button type="button" class="btn btn-default btn-lg">         <span class="glyphicon glyphicon-star"></span> star     </button>  </body> </html> 

and thats file structure:

-css    *bootstrap.min.css -fonts     *all font files here *index.html 

the strange when on debug font files loaded correctly

try re-downloading fonts, may corrupt.

check md5

md5 (glyphicons-halflings-regular.eot) = 2469ccfe446daa49d5c1446732d1436d md5 (glyphicons-halflings-regular.svg) = 3b31e1de93290779334c84c9b07c6eed md5 (glyphicons-halflings-regular.ttf) = aa9c7490c2fd52cb96c729753cc4f2d5 md5 (glyphicons-halflings-regular.woff) = 7c4cbe928205c888831ba76548563ca3 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -