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