Skip to content

Commit

Permalink
Update font file path in style.css
Browse files Browse the repository at this point in the history
The path to the custom font, SamuraiBlast, has been corrected in the CSS stylesheet. The previous path was causing errors because it was not correctly pointing to the file location.
  • Loading branch information
HichemTab-tech committed Jun 1, 2024
1 parent 3c92e13 commit 669eee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@font-face {
font-family: 'MyFont';
src: url('/assets/fonts/SamuraiBlast-YznGj.ttf'); /* Update with the path to your font file */
src: url('./assets/fonts/SamuraiBlast-YznGj.ttf'); /* Update with the path to your font file */
}

body {
Expand Down

0 comments on commit 669eee3

Please sign in to comment.