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