在Angular 8中,要更改页面上的字体,可以使用CSS样式来处理。以下是一个示例解决方法:
@font-face {
font-family: 'CustomFont';
src: url('../assets/fonts/CustomFont.ttf') format('truetype');
}
.custom-text {
font-family: 'CustomFont', sans-serif;
}
This text will have the custom font applied.
这样,当你运行应用程序时,你应该能够看到文字使用了自定义字体。
希望这可以帮助到你!