Skip to content

Commit

Permalink
Fix font paths in CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
saadatm authored and khaledhosny committed Nov 1, 2024
1 parent 42054d2 commit 62b8a8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions style.css
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
font-family: Amiri;
font-style: normal;
font-weight: 400;
src: url('Amiri-Regular.ttf');
src: url('fonts/Amiri-Regular.ttf');
}

@font-face {
font-family: Amiri;
font-style: normal;
font-weight: 700;
src: url('Amiri-Bold.ttf');
src: url('fonts/Amiri-Bold.ttf');
}

@font-face {
font-family: Amiri;
font-style: italic;
font-weight: 400;
src: url('Amiri-Slanted.ttf');
src: url('fonts/Amiri-Slanted.ttf');
}

html {
Expand Down

0 comments on commit 62b8a8b

Please sign in to comment.