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