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