Created
November 22, 2018 15:53
-
-
Save yous/586df04dc64f999d5a672651c49da88e to your computer and use it in GitHub Desktop.
Custom CSS for Korean fonts on Safari
This file contains 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
@font-face { | |
font-style: normal; | |
font-family: "Batang"; | |
src: local("AppleMyungjo"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "바탕"; | |
src: local("AppleMyungjo"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "Dotum"; | |
src: local("-apple-system"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "돋움"; | |
src: local("-apple-system"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "DotumChe"; | |
src: local("Courier"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "돋움체"; | |
src: local("Courier"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "Gulim"; | |
src: local("-apple-system"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "굴림"; | |
src: local("-apple-system"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "GulimChe"; | |
src: local("Courier"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "굴림체"; | |
src: local("Courier"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "New Gulim"; | |
src: local("-apple-system"); | |
} | |
@font-face { | |
font-style: normal; | |
font-family: "새굴림"; | |
src: local("-apple-system"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment