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