I have a Bootstrap template that I'm trying to apply to a project, but I have a huge problem importing the .eot, .svg, .ttf, .woff, .otf files
These files are in the directory: NomeProjeto\Content\fonts
My .css file that I call attempts to use these files is in the directory: NomeProjeto\Content\fonts
.
I'm trying to reference it as follows:
@font-face {
font-family: 'FontAwesome';
src: url('../fonts/fontawesome-webfont.eot?v=4.2.0');
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../fonts/fontawesome-webfont.svg? v=4.2.0#fontawesomeregular') format('svg'); font-weight: normal;
font-style: normal;
}
Personal, any ideas?
Thank you.