I have this project with fonts, images and CSS files under the folder assets:
How I can import the fonts into this CSS file?
@font-face {
font-family: lg;
src: url(./assets/fonts/lgd641.eot?n1z373);
src: url(./assets/fonts/lgd41d.eot?#iefixn1z373) format("embedded-opentype"), url(./assets/fonts/lgd641.woff?n1z373) format("woff"), url(./assets/fonts/lgd641.ttf?n1z373) format("truetype"), url(./assets/fonts/lgd641.svg?n1z373#lg) format("svg");
font-weight: 400;
font-style: normal;
}
Now I get not found.
Try changing the paths to the following:
@font-face {
font-family: lg;
src: url(assets/fonts/lgd641.eot?n1z373);
src: url(assets/fonts/lgd41d.eot?#iefixn1z373) format("embedded-opentype"), url(assets/fonts/lgd641.woff?n1z373) format("woff"), url(assets/fonts/lgd641.ttf?n1z373) format("truetype"), url(assets/fonts/lgd641.svg?n1z373#lg) format("svg");
font-weight: 400;
font-style: normal;
}