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