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