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