I had the same issue. Turned out I forgot to copy the font files to the fonts directory.
metro-bootstrap.css
references the fonts:
@font-face {
font-family: 'iconFont';
src: url('../fonts/iconFont.eot');
src: url('../fonts/iconFont.eot?#iefix') format('embedded-opentype'), url('../fonts/iconFont.woff') format('woff'), url('../fonts/iconFont.ttf') format('truetype'), url('../fonts/iconFont.svg#iconFont') format('svg');
font-weight: normal;
font-style: normal;
}
So they need to be put in the appropriate directory relative to metro-bootstrap.css
. If you download Metro-UI-CSS-master.zip
, the fonts can be found in the fonts
directory.