The Pacifico font supports many scripts like: Latin Lowercase, Latin Uppercase, Cyrillic Lowercase.. and each one displays a specific cursive glyph.
If I use the font with Cyrillic text, how can I specifically make use of the cursive glyph showed in the image and not just the capitalized д for example, and also not explicitly using italics or slanted letters.
I have downloaded the Pacifico font into static/fonts/ and then tried with:
<html>
<head>
<style>
@font-face {
font-family: 'Pacifico';
src:
local('Pacifico Regular'),
url('/static/fonts/Pacifico-Regular.ttf format("truetype")');
}
.pacifico-font {
font-size: 5em ;
font-family:'Pacifico';
}
</style>
</head>
<body>
<span class="pacifico-font">д</span>
</body>
</html>
But it is still swowing д.

Strange behavior, this alternative works fine :
Maybe a problem with the downloaded font or with the declarations syntax, I don't know.