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