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