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