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