mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-23 04:19:48 +00:00
40 lines
948 B
CSS
40 lines
948 B
CSS
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('../../assets/fonts/Poppins-Regular.woff2') format('woff2'),
|
|
url('../../assets/fonts/Poppins-Regular.ttf') format('truetype');
|
|
font-weight: 400;
|
|
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('../../assets/fonts/Poppins-Medium.woff2') format('woff2'),
|
|
url('../../assets/fonts/Poppins-Medium.ttf') format('truetype');
|
|
font-weight: 500;
|
|
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('../../assets/fonts/Poppins-SemiBold.woff2') format('woff2'),
|
|
url('../../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
|
|
font-weight: 600;
|
|
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('../../assets/fonts/Poppins-Bold.woff2') format('woff2'),
|
|
url('../../assets/fonts/Poppins-Bold.ttf') format('truetype');
|
|
font-weight: 700;
|
|
|
|
font-display: swap;
|
|
}
|
|
|
|
* {
|
|
font-family: 'Poppins', Times, serif;
|
|
}
|