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