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