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