12345678910111213141516171819202122232425262728293031323334353637 |
- @font-face {
- font-family: 'Poppins';
- src: local('Poppins Regular'), local('Poppins-Regular'),
- url('Poppins-Regular.woff') format('woff');
- font-weight: normal;
- font-style: normal;
- font-display: swap;
- }
- @font-face {
- font-family: 'Poppins';
- src: local('Poppins Bold Italic'), local('Poppins-BoldItalic'),
- url('Poppins-BoldItalic.woff') format('woff');
- font-weight: bold;
- font-style: italic;
- font-display: swap;
- }
- @font-face {
- font-family: 'Poppins';
- src: local('Poppins Italic'), local('Poppins-Italic'),
- url('Poppins-Italic.woff') format('woff');
- font-weight: normal;
- font-style: italic;
- font-display: swap;
- }
- @font-face {
- font-family: 'Poppins';
- src: local('Poppins Bold'), local('Poppins-Bold'),
- url('Poppins-Bold.woff') format('woff');
- font-weight: bold;
- font-style: normal;
- font-display: swap;
- }
|