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