Skip to content

Commit

Permalink
Merge pull request #9 from dabigjoe6/font
Browse files Browse the repository at this point in the history
Add trebuchet font
  • Loading branch information
dabigjoe6 authored Jun 18, 2023
2 parents a7d614d + 16a1b66 commit 6cebc78
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Binary file added src/fonts/Trebuchet-MS-Italic.ttf
Binary file not shown.
Binary file added src/fonts/trebuc.ttf
Binary file not shown.
9 changes: 8 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
@font-face {
font-family: 'TrebuchetMS';
src: local('TrebuchetMS'), url(./fonts/trebuc.ttf) format('ttf');
/* other formats include: 'woff2', 'truetype, 'opentype',
'embedded-opentype', and 'svg' */
}

body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
font-family: -apple-system, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
Expand Down

0 comments on commit 6cebc78

Please sign in to comment.