I am trying to include some custom fonts in my project with no success.
NOTE: I am using angular-cli: angular-cli@1.0.0-beta.21
I put the fonts in
Have you tried using the googlefont url from https://fonts.google.com?
In your styles.css:
@import url('https://fonts.googleapis.com/css?family=Roboto');
Then use the font-family in styles.css or wherever you need:
body, html {
font-family: 'Roboto';
}
I'm using this in my project and it works nicely.