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