Created
April 23, 2021 23:04
-
-
Save takahirohonda/4afb80380e946a8a6d49cc8976fbdb3e to your computer and use it in GitHub Desktop.
font-face-multiple-usage.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
.regularText { | |
font-family: 'Lato', sans-serif; | |
font-style: normal; | |
font-weight: 400; | |
} | |
.boldText { | |
font-family: 'Lato', sans-serif; | |
font-style: normal; | |
font-weight: 700; | |
} | |
.lightText { | |
font-family: 'Lato', sans-serif; | |
font-style: normal; | |
font-weight: 300; | |
} | |
.italicText { | |
font-family: 'Lato', sans-serif; | |
font-style: normal; | |
font-weight: 400; | |
} | |
.boldItalicText { | |
font-family: 'Lato', sans-serif; | |
font-style: normal; | |
font-weight: 400; | |
} | |
.lightItalicText { | |
font-family: 'Lato', sans-serif; | |
font-style: normal; | |
font-weight: 400; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment