Last active
April 25, 2023 08:15
-
-
Save mucahitnezir/305d5f58fe8f2fffeb752b022a55e169 to your computer and use it in GitHub Desktop.
Google font turkish character problem solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Example Font : Rajdhani | |
Normal Url : https://fonts.googleapis.com/css?family=Rajdhani:400,300,500,700,600 | |
with Adding ext : https://fonts.googleapis.com/css?family=Rajdhani:400,300,500,700,600&subset=latin,latin-ext | |
*/ | |
/* import font */ | |
@import url(https://fonts.googleapis.com/css?family=Rajdhani:400,300,500,700,600&subset=latin,latin-ext); | |
/* Usage of font */ | |
selector { | |
font-family: 'Rajdhani', sans-serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment