Created
September 27, 2016 16:24
-
-
Save gferreira/44cc3eec6d704f40708c071c047e0b5d to your computer and use it in GitHub Desktop.
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
/* | |
Exercise 2B: Flexible typeface family | |
defining instances directly in CSS | |
*/ | |
@font-face { | |
font-family: "MyFamily"; | |
src: url("MyVariableFont-Roman.otf"); | |
font-style: normal; | |
} | |
@font-face { | |
font-family: "MyFamily"; | |
src: url("MyVariableFont-Italic.otf"); | |
font-style: italic; | |
} | |
/* document styles */ | |
body { font-family: "MyFamily"; } | |
h1 { font-variation-settings: 'wght' 900, 'wdth' 80; } | |
h2 { font-variation-settings: 'wght' 700, 'wdth' 80; } | |
p { font-variation-settings: 'wght' 400, 'wdth' 100; } | |
td { font-variation-settings: 'wght' 400, 'wdth' 80; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment