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