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