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