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