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