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