16 lines
368 B
CSS
16 lines
368 B
CSS
/* src/fonts.css atau public/fonts/fonts.css */
|
|
@font-face {
|
|
font-family: 'Rubik';
|
|
font-style: normal;
|
|
font-weight: 300;
|
|
src: url('/fonts/rubik/rubik-v28-latin-300.woff2') format('woff2');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Rubik';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url('/fonts/rubik/rubik-v28-latin-regular.woff2') format('woff2');
|
|
}
|
|
|
|
/* dst... */ |