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