Skip to content

Instantly share code, notes, and snippets.

@takahirohonda
Created April 23, 2021 23:03
Show Gist options
  • Save takahirohonda/7cfffb9b31512d7c98852bb9efce9f31 to your computer and use it in GitHub Desktop.
Save takahirohonda/7cfffb9b31512d7c98852bb9efce9f31 to your computer and use it in GitHub Desktop.
font-face-multiple.css
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: url('./Lato-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 700;
src: url('./Lato-Bold.ttf') format('truetype');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 300;
src: url('./Lato-Light.ttf') format('truetype');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 400;
src: url('./Lato-Italic.ttf') format('truetype');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 700;
src: url('./Lato-BoldItalic.ttf') format('truetype');
}
@font-face {
font-family: 'Lato';
font-style: italic;
font-weight: 300;
src: url('./Lato-Light.ttf') format('truetype');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment