Last active
February 21, 2022 15:43
-
-
Save maoxiaoke/d0003657297523d742d85e6b48f8a587 to your computer and use it in GitHub Desktop.
__CSS__
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
@font-face { | |
font-family: 'MyWebFont'; | |
src: url('webfont.eot'); /* IE9 Compat Modes */ | |
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ | |
url('webfont.woff2') format('woff2'), /* Super Modern Browsers */ | |
url('webfont.woff') format('woff'), /* Pretty Modern Browsers */ | |
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */ | |
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */ | |
} | |
/* | |
* Only support modern browers, except for ie8 and that before. | |
*/ | |
@font-face { | |
font-family: 'MyWebFont'; | |
src: url('myfont.woff2') format('woff2'), | |
url('myfont.woff') format('woff'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment