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