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