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