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