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