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