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