Loading
Current section: Styling 7 exercises
Problem

Add Custom Fonts to the Global CSS

Transcript

00:00 Now, we want to have a CSS file that applies globally on our application, and you add CSS file or style sheets, those resources via link tags. So we've got this CSS file, our font.css that's under app styles font.css, and it configures all of our fonts.

00:18 It includes references to slash fonts, which we'll find in the public directory slash fonts, and then our font name, and then all of the fonts that are in here. So what we're going to do is we need to link this font.css to our application so that we can then use the styles that are applied to get

00:38 our font family applied to our application and use that throughout our app. So your job is to add the link to the page so that we can get these fonts applied. See you on the other side.