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