fonts.css 1021 B

123456789101112131415161718192021222324252627282930
  1. @font-face {
  2. font-family: 'Roboto';
  3. font-style: normal;
  4. font-weight: 400;
  5. src: local('Roboto'), local('Roboto-Regular'), url("/fonts/roboto-regular.woff2") format('woff2'), url("/fonts/roboto-regular.woff") format('woff');
  6. }
  7. @font-face {
  8. font-family: 'Roboto';
  9. font-style: normal;
  10. font-weight: 700;
  11. src: local('Roboto Bold'), local('Roboto-Bold'), url("/fonts/roboto-bold.woff2") format('woff2'), url("/fonts/roboto-bold.woff") format('woff');
  12. }
  13. @font-face {
  14. font-family: 'Poppins';
  15. font-style: normal;
  16. font-weight: 400;
  17. src: local('Poppins'), local('Poppins-Regular'), url("/fonts/poppins-regular.woff") format('woff');
  18. }
  19. @font-face {
  20. font-family: 'Poppins';
  21. font-style: normal;
  22. font-weight: 500;
  23. src: local('Poppins Medium'), local('Poppins-Medium'), url("/fonts/poppins-medium.woff") format('woff');
  24. }
  25. @font-face {
  26. font-family: 'Poppins';
  27. font-style: normal;
  28. font-weight: 700;
  29. src: local('Poppins Bold'), local('Poppins-Bold'), url("/fonts/poppins-bold.woff") format('woff');
  30. }