Use on the webTotal Use [ 3398 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/7ac0866f366059d4efc5c31535cf38cc?family=Helvetica+Cyrillic+Inclined" 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/7ac0866f366059d4efc5c31535cf38cc?family=Helvetica+Cyrillic+Inclined);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Helvetica Cyrillic Inclined";
src: url("https://db.onlinewebfonts.com/t/7ac0866f366059d4efc5c31535cf38cc.eot");
src: url("https://db.onlinewebfonts.com/t/7ac0866f366059d4efc5c31535cf38cc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/7ac0866f366059d4efc5c31535cf38cc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/7ac0866f366059d4efc5c31535cf38cc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/7ac0866f366059d4efc5c31535cf38cc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/7ac0866f366059d4efc5c31535cf38cc.svg#Helvetica Cyrillic Inclined")format("svg");
}
2CSS rules to specify fonts
font-family: "Helvetica Cyrillic Inclined";