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