Embed code in the <head> of your html
Код: Выделить всё
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Ruslan+Display&display=swap" rel="stylesheet">
Код: Выделить всё
.noto-color-emoji-regular {
font-family: "Noto Color Emoji", sans-serif;
font-weight: 400;
font-style: normal;
}
Код: Выделить всё
.ruslan-display-regular {
font-family: "Ruslan Display", serif;
font-weight: 400;
font-style: normal;
}
@import
Embed code in the <head> of your html
Код: Выделить всё
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Ruslan+Display&display=swap');
</style>
Код: Выделить всё
.noto-color-emoji-regular {
font-family: "Noto Color Emoji", sans-serif;
font-weight: 400;
font-style: normal;
}
Код: Выделить всё
.ruslan-display-regular {
font-family: "Ruslan Display", serif;
font-weight: 400;
font-style: normal;
}