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