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