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