Use on the webTotal Use [ 3510 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/39214e636b49e65eefdde88b6fdae4dc?family=cyrillic+hinglish" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/39214e636b49e65eefdde88b6fdae4dc?family=cyrillic+hinglish);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "cyrillic hinglish";
src: url("https://db.onlinewebfonts.com/t/39214e636b49e65eefdde88b6fdae4dc.eot");
src: url("https://db.onlinewebfonts.com/t/39214e636b49e65eefdde88b6fdae4dc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/39214e636b49e65eefdde88b6fdae4dc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/39214e636b49e65eefdde88b6fdae4dc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/39214e636b49e65eefdde88b6fdae4dc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/39214e636b49e65eefdde88b6fdae4dc.svg#cyrillic hinglish")format("svg");
}
2CSS rules to specify fonts
font-family: "cyrillic hinglish";