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