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