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