I have a problem with my icons "not showing up" on a web page, These icons are stored in the fonts folder respectively.
Below contains the snippet of my styles.css
styles.css
@font-face {
font-family: 'FontAwesome';
src: url('../../fonts/fontawesome-webfont.eot?v=4.1.0');
src: url('../../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
My file structure
How do I reference my files to ensure that my icons show up properly?
According to the example here, http://css-tricks.com/quick-reminder-about-file-paths/
I use "../../" as this will go to resources/fonts.
Am I wrong?
Any help please? Thanks!