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