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