Skip to content

Commit

Permalink
Update font URLs to use WOFF format
Browse files Browse the repository at this point in the history
The font URLs in the style.css file have been updated to use the WOFF format instead of TTF. The TTF fonts weren't loading for some reason.
  • Loading branch information
Elec0 committed May 21, 2024
1 parent fb85087 commit eeed858
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
Binary file removed res/fonts/AGENCYR.TTF
Binary file not shown.
Binary file added res/fonts/AGENCYR.woff
Binary file not shown.
Binary file removed res/fonts/AgencyFBBold.ttf
Binary file not shown.
Binary file added res/fonts/AgencyFBBold.woff
Binary file not shown.
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* #region local fonts */
@font-face {
font-family: AgencyFB;
src: url("res/fonts/AGENCYR.TTF");
src: url("res/fonts/AGENCYR.woff") format("woff");
}
@font-face {
font-family: AgencyFB;
src: url("res/fonts/AgencyFBBold.ttf");
src: url("res/fonts/AgencyFBBold.woff") format("woff");
font-weight: bold;
}
/* #endregion */
Expand Down

0 comments on commit eeed858

Please sign in to comment.